I have run into a little(well big) problem in an application I am working on.
I am working on a module for an application for my company. The application is a WinForm application, but I have been working on a WPF application(not really an application as you will see) that is going to be hosted in this WinForm application when it is complete.
To do this, I am using the WinForm element host, and I have created a "shell" user control, and then other user control windows inside of that shell user control. So it appears as a WPF application, and only uses the WinForm application as its startup project since the WPF application is really only a collection of WPF Controls.
The problem I have ran into is that since I have not created an actual "WPF Application", there is no App.xaml. This has disabled me from using Shared Resources the way I desire, especially XAML shared resources.
Is there a way I can still treat my collection of WPF User Controls as a WPF Application, and somehow use a App.xaml file for my resources. If not, what are my options for using shared resources in my application.