Hello,
I try to use your skin option and I need help:
I use a NForm and i set the local copy property of the Nevron.UI.Winform.Skin.dll to true
my source code is
NSkinResource resource = new NSkinResource();
resource.ResourceType = SkinResourceType.GlobalAssembly;
resource.AssemblyName = "Nevron.UI.WinForm.Skins";
resource.SkinName = "Office2007Blue"; // --> NG
//resource.SkinName = "Orange"; // --> OK
//resource.SkinName = "Vista"; // --> OK
//resource.SkinName = "Officd2007Black"; // --> OK
NSkin skin = new NSkin();
if (skin.Load(resource))
{
NSkinManager.Instance.Skin = skin;
}
but the skin is applied only to the form.
I would like it to be applied also to the controls in the form.
How can I do this?
There is a way to set skin to the entire application in one step?
thanks for your help.
simha