Hi,
I'm having issue about skin.Load() function.
Can anyone tell me how I can apply Nevron skin(Office 2007 Blue) in C#.
I use Nevron.UI.WinForm.Skins.dll (file version : 10.1.8.12).
===============================================
resource.ResourceType = SkinResourceType.GlobalAssembly;
resource.AssemblyName = "Nevron.UI.WinForm.Skins";
resource.SkinName = "Office 2007 Blue";
NSkin skin = new NSkin();
if (skin.Load(resource))
{
NSkinManager.Instance.Skin = skin;
}
================================================
skin.Load(resource) return false.
Is there a way to apply this skin in C#?
Please check this code..
thank you.