我想在 C++/WinRT 应用程序中获取系统语言(不是输入语言,而是整个系统语言),但找不到这样做的方法。我用谷歌搜索,发现Unity
这可以使用System.Globalization.CultureInfo.CurrentCulture
结构来完成,这在 C++ 代码中不可用。有人熟悉这个吗?
问问题
276 次
1 回答
1
获取系统语言 UWP C++/WinRT
您可以使用语言类来获取系统语言。首先,您需要包含它需要的头文件。例如:
#include <winrt/Windows.System.UserProfile.h>
#include <winrt/Windows.Globalization.h>
void MainPage::ClickHandler(IInspectable const&, RoutedEventArgs const&)
{
auto topUserLaunghage = Windows::System::UserProfile::GlobalizationPreferences::Languages().GetAt(0);
Windows::Globalization::Language language{topUserLaunghage};
hstring displayName = language.DisplayName();
}
更新:
当您更改区域格式时,日期、时间等将更改其格式,您可以使用DateTimeFormatter的ResolvedLanguage获取最近用于格式化日期和时间的语言。例如:
Windows::Globalization::GeographicRegion userRegion{};
hstring regionCode = userRegion.CodeTwoLetter();
Windows::Foundation::Collections::IVector<hstring> coll{ winrt::single_threaded_vector<hstring>() };
coll.Append(regionCode);
auto dateTimeFormatter = Windows::Globalization::DateTimeFormatting::DateTimeFormatter(L"longdate", coll);
auto regionInfoName = dateTimeFormatter.ResolvedLanguage(); // This is the language from the Regional format
于 2020-08-12T02:39:18.110 回答