修改字体

This commit is contained in:
bob
2025-05-27 17:57:42 +08:00
parent 7ad9f351c7
commit 8e13f19ee0
14 changed files with 100 additions and 35 deletions

View File

@@ -46,9 +46,9 @@ namespace NBC
public bool UseLanguage(SystemLanguage language)
{
if (_languages.ContainsKey(language))
if (_languages.TryGetValue(language, out var language1))
{
_currentLanguageDictionary = _languages[language];
_currentLanguageDictionary = language1;
return true;
}