2023-08-26 02:58:39 +00:00
|
|
|
|
using System.Windows;
|
2022-12-13 07:10:18 +00:00
|
|
|
|
|
|
|
|
|
//若要开始生成可本地化的应用程序,请设置
|
|
|
|
|
//.csproj 文件中的 <UICulture>CultureYouAreCodingWith</UICulture>
|
|
|
|
|
//例如,如果您在源文件中使用的是美国英语,
|
|
|
|
|
//使用的是美国英语,请将 <UICulture> 设置为 en-US。 然后取消
|
|
|
|
|
//对以下 NeutralResourceLanguage 特性的注释。 更新
|
|
|
|
|
//以下行中的“en-US”以匹配项目文件中的 UICulture 设置。
|
|
|
|
|
|
|
|
|
|
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[assembly: ThemeInfo(
|
|
|
|
|
ResourceDictionaryLocation.None, //主题特定资源词典所处位置
|
|
|
|
|
//(未在页面中找到资源时使用,
|
|
|
|
|
//或应用程序资源字典中找到时使用)
|
|
|
|
|
ResourceDictionaryLocation.SourceAssembly //常规资源词典所处位置
|
|
|
|
|
//(未在页面中找到资源时使用,
|
|
|
|
|
//、应用程序或任何主题专用资源字典中找到时使用)
|
2023-08-26 02:58:39 +00:00
|
|
|
|
)]
|