Hi,
I have a form that is shared between my C# Outlook plugin project and another application. When the form is launched by my application, I see the Infragistics styling. When the form is launched by the Outlook plugin, I don't see the Infragistics styling. Do you know why this happens?
Thank you,
Trent
Hello,
I think that in your case StyleManager cannot find the isl file that you are using to style your form, so you should embed your isl as resource of the project .
http://support.microsoft.com/kb/319292
Then you will be able to load it through StyleManager.Load(Stream) method. I have tried this approach and everything works fine for me. In the attached zip you will find the sample which I have implemented to test this approach and on the following link you could see how this works on my machine.
https://www.youtube.com/watch?v=dwAYwMDvj2Y&feature=youtu.be
Please let me know if you have any further questions.
Hi Hristo,
Your solution worked perfectly!
Thanks,