vote up 1 vote down star

I changed the build action of my App.xaml to "Page" so I could handle a splash screen and make sure my application run as a single instance only (having my own entry point). It works fine in run-time but in design-time the application cannot see the my resources anymore. Resources are in separate xaml files located in the same project. How can I make my app see the resources in design-time again?

Thanks

flag

I can switch back and forth - change App.xaml's build action to Page when I am ready to publish and switch it back when in development. But is this what I am supposed to be doing? – Gustavo Cavalcanti May 13 at 16:47

2 Answers

vote up 1 vote down check

If I understand you correct, you're loading Application-wide resources in the app.xaml? In this case you can do like this:


App app = new App();
//Get assembly name is your own method
string assemblyName = GetAssemblyName(Assembly.GetExecutingAssembly());

Uri resourceLocater = new Uri("/" + assemblyName + ";component/app.xaml", UriKind.Relative);
System.Windows.Application.LoadComponent(app, resourceLocater);
MainWindow mainWindow = new MainWindow();
app.Run(mainWindow);

Then your resources will be loaded

/Daniel

link|flag
vote up 0 vote down

Make sure you are calling InitializeComponent() as the first line of your application's constructor:

public App()
{
    // This is the method generated by VisualStudio that initializes
    // the application from associated XAML file
    InitializeComponent();

    // Do everything else
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.