📄 ftblicense.cs
字号:
namespace FreeTextBoxControls.Licensing
{
using System;
using System.ComponentModel;
public class FtbLicense : License
{
public FtbLicense(Type type, string key, string data)
{
this._type = type;
this._key = key;
this._data = data;
}
public FtbLicense(Type type, string key, string data, bool isPro) : this(type, key, data)
{
this._isPro = isPro;
}
public override void Dispose()
{
}
public string Data
{
get
{
return this._data;
}
}
public bool IsPro
{
get
{
return this._isPro;
}
}
public override string LicenseKey
{
get
{
return this._key;
}
}
private string _data;
private bool _isPro;
private string _key;
private Type _type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -