At start of my WindowsForms/C#/.NET application, I'd like to load my satellite assembly and use it to replace the look-and-feel of my application. In a manner similar to how satellite assemblies are loaded for internationalizing an application. Except that I just want to be able to call something like:
// Load it. Ignore CultureInfo, etc.
UseSatelliteAssembly("mySatelliteAssembly.dll");
I have created a satellite assembly in .NET that contains a bunch of compiled RESX files. The RESX files come from the UI of my application, and I compiled them into a satellite assembly using the AL.EXE program.
I don't want to have to write code to copy each string in the satellite assembly into my UI.
My main assembly is signed. My satellite assembly probably would not be signed (with same key, anyway).
Is there any easy way to do this?