⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selecteddata.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Imps.Client.Pc.BizControls
{
    using System;
    using System.Drawing;

    public class SelectedData
    {
        private Color _color;
        private Font _font;
        private string _text;

        public SelectedData()
        {
            this._text = null;
            this._font = null;
            this._color = Color.FromArgb(0, 0, 0);
        }

        public SelectedData(string sText, Font font, Color color)
        {
            this._text = sText;
            this._font = font;
            this._color = color;
        }

        public string Text
        {
            get
            {
                return this._text;
            }
            set
            {
                this._text = value;
            }
        }

        public Color TextColor
        {
            get
            {
                return this._color;
            }
            set
            {
                this._color = value;
            }
        }

        public Font TextFont
        {
            get
            {
                return this._font;
            }
            set
            {
                this._font = value;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -