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.
Hello JH Kwon,
From the image you sent is not getting clear which controls do you mean.
Can you give us some more info?
Thanks.
Regards,
Angel.
There is no problem when i use the previous version (8.6.12.12)..
i found this skin problem after updating the new version skin dll file.
i attatch one more image file.
i can't find right and bottom border lines in this image.
thank you.
Can you tell me what is the OS that you run your application?
Also it will be helpful if you send me an example application that demonstrates the problem at angel@nevron.com
Thanks and regards,
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.
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(); } }}
Hi JH Kwon,
Please, download the latest version of Nevron Vision from our site.
We had some issues with skin painting, which are fixed in the current service pack.
Let me know if the problem persist.
Hi, Angel,
I installed the latest version of Nevron vision from your site,
but there is the same problem about missing skin border line
when i use the "Office2007Blue" skin.
Please check again about this skin problem..
Hi~ Angel,
This is an example app that demonstrates it.
I find the problem when i use "Office2007Blue" skin only..
Please check this app file and give an answer.
I was expecting to send me a project, not the compiled application.
The point is to run the project on my machine and to be able to debug it and find what might cause the problem you got.
Angel,
I attatch project zip file.