Nevron 控件客户机注册序列号配制
这几天一个项目要整个好点的UI,就下了一套Nevron控件,这套东西非常强,后来发布到客户机后出现要注册的问题了,我是这样解决的,感觉比较简单,只需要在Program.cs中加上这段就ok了.
static void Main()
{
NLicense license = new NLicense("xxxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx");//序列号
NLicenseManager.Instance.SetLicense(license);
NLicenseManager.Instance.LockLicense = true;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmLogin());
}