📄 xlabel.cs
字号:
namespace Imps.Client.Pc.Controls
{
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
public class XLabel : Label
{
[Category("外观"), Description("标签的边框颜色,当BorderStyle设置为FixedSingle时有效")]
public Color BorderColor
{
get
{
return Color.Empty;
}
set
{
}
}
[Description("标签的边框样式,当BorderStyle设置为FixedSingle时有效"), Category("外观")]
public System.Windows.Forms.ButtonBorderStyle ButtonBorderStyle
{
get
{
return System.Windows.Forms.ButtonBorderStyle.None;
}
set
{
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -