Group: Forum Members
Last Active: 14 Years Ago
Posts: 10,
Visits: 1
|
Hello, I would like to know how to fix this skin problem. The skin of C# controls has not bottom and right side border. 
My dll file information is following. - file name : Nevron.UI.WinForm.Skins.dll - version : 10.1.8.12
Thank you.
|
Group: Forum Members
Last Active: 14 Years Ago
Posts: 10,
Visits: 1
|
Hello, This is the sample code about Nevron skin problem in C#. I found this problem when i use "Office2007Blue" only. And I run this application in the Windows XP(ver2002, ServicePack 2).
I hope you can help me. Thanks and regards, JH Kwon. using System; using Nevron.UI.WinForm.Controls; namespace NevronSkinTest { public partial class Form1 : Nevron.UI.WinForm.Controls.NForm { public Form1() { 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; } InitializeComponent(); } } } |
|