xlabel.cs

来自「破解的飞信源代码」· CS 代码 · 共 36 行

CS
36
字号
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 + =
减小字号Ctrl + -
显示快捷键?