I am stuck with ThemeInfo attribute inside my AssemblyInfo.cs file. I am trying to write a custom control. The custom control is in a dll called "MyCustomControls.dll". Futhermore the control itself inherits from another custom control which is inside another dll called "MyAnotherCustomControls.dll".
I read on MSDN that ThemeInfo must be declared with 2 parameters responsible for control theme specific location and generic specific location though I have no idea what is "theme" and what "generic". How can I understand those two better?
Can somebody explain me theme please and generic?
Also can somebody please tell me how to just by using ThemeInfo tell my "MyCustomControls.dll" to use resources defined in "MyAnotherCustomControls.dll"? Since the custom control which is in "MyCustomControIs.dll" inherits/derives from that other customcontrol which is in "MyAnotherCustomControls.dll", it will need its base class dictionary resources. I read on MSDN that there is the property called "ExternalAssembly" which should allow you to access resources from different dlls. I guess thats what I need to connect dictionary resources from "MyCustomControls.dll" with "MyAnotherCustomControls.dll". How do I manage this?
Thanks in advance.