Локализуемое приложение WPF - настройки UICulture приводят к проблемам с ресурсами - PullRequest
3 голосов
/ 21 мая 2011

Я хочу создать локализуемое приложение WPF.Я следовал инструкциям в комментариях к файлу AssemblyInfo.cs:

//In order to begin building localizable applications, set 
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
//inside a <PropertyGroup>.  For example, if you are using US english
//in your source files, set the <UICulture> to en-US.  Then uncomment
//the NeutralResourceLanguage attribute below.  Update the "en-US" in
//the line below to match the UICulture setting in the project file.

После того, как я это сделал, мое приложение больше не запускается.Я использую пользовательский класс приложения:

namespace Namespace
{
    public partial class App : Application
    {
        [STAThread()]
        [SecurityPermission(SecurityAction.LinkDemand)]
        public static void Main()
        {
            var app = new App();

            app.InitializeComponent();
            app.Run();
        }


        [DebuggerNonUserCode()]
        public void InitializeComponent()
        {
            this.StartupUri = new Uri("MainWindow.xaml", UriKind.Relative);
        }
    }
}

<ns:App
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ns="clr-namespace:Namespace">

</ns:App>

Раньше все работало нормально.Я предполагаю, что есть какое-то несоответствие между настроенными настройками UICulture и тем, которое указано для MainWindow.xaml, но я не знаю, как это исправить.

1 Ответ

10 голосов
/ 01 марта 2012

у меня был похожий эффект; в AssemblyInfo.cs атрибуту NeutralResourcesLanguage требовался параметр UltimateResourceFallbackLocation.Satellite:

// Uncommenting the following line --> OK
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
// Uncommenting the following line --> IOException: Cannot locate resource 'app.xaml'.
// [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)]
// Uncommenting the following line --> IOException: Cannot locate resource 'app.xaml'.
// [assembly: NeutralResourcesLanguage("en-US")]
...