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

📄 conversationsetting.cs

📁 破解的飞信源代码
💻 CS
📖 第 1 页 / 共 2 页
字号:
            {
                return base.InnerGetPropertyValue<ProposedData<int>>("AutoReplyIndex", new ProposedData<int>(0));
            }
            internal set
            {
                if ((value < 0) || (value > 4))
                {
                    value = new ProposedData<int>(0);
                }
                base.InnerSetPropertyValue<ProposedData<int>>("AutoReplyIndex", value);
            }
        }

        public System.Drawing.Color Color
        {
            get
            {
                return this.c;
            }
            set
            {
                this.c = value;
            }
        }

        public string CurrentPortraitFileInfo
        {
            get
            {
                if (this._currentPortraitFileInfo.Length > 0)
                {
                    return this._currentPortraitFileInfo;
                }
                return string.Format("{0},{1}", "1", this._owner.Sid);
            }
            set
            {
                this._currentPortraitFileInfo = value;
            }
        }

        public System.Drawing.Font DefaultFont
        {
            get
            {
                return this.f;
            }
        }

        public string DefaultMsgHistoryDir
        {
            get
            {
                return this._defaultMsgHistoryDir;
            }
            set
            {
                this._defaultMsgHistoryDir = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public string DefaultShareContentSavePath
        {
            get
            {
                if (string.IsNullOrEmpty(this._DefaultShareContentSavePath))
                {
                    return ImpsPathInfo.DefaultShareContentSavePath;
                }
                return this._DefaultShareContentSavePath;
            }
            set
            {
                if (value != this.DefaultShareContentSavePath)
                {
                    this._DefaultShareContentSavePath = value;
                }
            }
        }

        [ConfigCategory(ConfigCategory.User)]
        public System.Drawing.Font Font
        {
            get
            {
                return this.f;
            }
            set
            {
                this.f = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int GroupWindowState
        {
            get
            {
                return this._GroupWindowState;
            }
            set
            {
                this._GroupWindowState = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int LastHeight
        {
            get
            {
                return this._lastHeight;
            }
            set
            {
                this._lastHeight = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int LastInputAreaHeight
        {
            get
            {
                return this._LastInputAreaHeight;
            }
            set
            {
                this._LastInputAreaHeight = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int LastWidth
        {
            get
            {
                return this._lastWidth;
            }
            set
            {
                this._lastWidth = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int LastX
        {
            get
            {
                return this._lastX;
            }
            set
            {
                this._lastX = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int LastY
        {
            get
            {
                return this._lastY;
            }
            set
            {
                this._lastY = value;
            }
        }

        [ConfigCategory(ConfigCategory.User)]
        public ProposedData<bool> MessageToSMS
        {
            get
            {
                return base.InnerGetPropertyValue<ProposedData<bool>>("MessageToSMS", new ProposedData<bool>(false));
            }
            internal set
            {
                base.InnerSetPropertyValue<ProposedData<bool>>("MessageToSMS", value);
            }
        }

        public string MsgHistoryColor
        {
            get
            {
                return base.InnerGetPropertyValue<string>("MsgHistoryColor", "#808080");
            }
        }

        public int NewLineInterval
        {
            get
            {
                return base.InnerGetPropertyValue<ProposedData<int>>("NewLineInterval", new ProposedData<int>(10));
            }
        }

        public int PrintScreenType
        {
            get
            {
                return this._printScreenType;
            }
            set
            {
                this._printScreenType = value;
            }
        }

        public string RootNode
        {
            get
            {
                return "ConversationSetting";
            }
        }

        [ConfigCategory(ConfigCategory.User)]
        public bool SaveMessages
        {
            get
            {
                return base.InnerGetPropertyValue<bool>("save-message", this._owner.Configuration.UserSetting.SaveMyInfo);
            }
            set
            {
                base.InnerSetPropertyValue<bool>("save-message", value);
            }
        }

        [ConfigCategory(ConfigCategory.User)]
        public ProposedData<bool> SendMessageByEnterKey
        {
            get
            {
                return base.InnerGetPropertyValue<ProposedData<bool>>("EnterToSend", new ProposedData<bool>(true));
            }
            set
            {
                base.InnerSetPropertyValue<ProposedData<bool>>("EnterToSend", value);
            }
        }

        [ConfigCategory(ConfigCategory.User)]
        public ProposedData<bool> ShowLatestMessages
        {
            get
            {
                return base.InnerGetPropertyValue<ProposedData<bool>>("ShowLatestMessages", new ProposedData<bool>(false));
            }
            internal set
            {
                base.InnerSetPropertyValue<ProposedData<bool>>("ShowLatestMessages", value);
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public bool ShowPersonalGroupDetail
        {
            get
            {
                return this._ShowPersonalGroupDetail;
            }
            set
            {
                this._ShowPersonalGroupDetail = value;
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public bool ShowPortrait
        {
            get
            {
                return this._ShowPortrait;
            }
            set
            {
                this._ShowPortrait = value;
            }
        }

        public ProposedData<bool> ShowTimestampEveryMsg
        {
            get
            {
                return base.InnerGetPropertyValue<ProposedData<bool>>("ShowTimestampEveryMsg", new ProposedData<bool>(true));
            }
            internal set
            {
                base.InnerSetPropertyValue<ProposedData<bool>>("ShowTimestampEveryMsg", value);
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        internal string StrFont
        {
            get
            {
                return string.Format("Color={0},Name={1},Size={2},Style={3}", new object[] { string.Format("{0}.{1}.{2}.{3}", new object[] { (int) this.Color.A, (int) this.Color.R, (int) this.Color.G, (int) this.Color.B }), this.Font.FontFamily.Name, this.Font.Size, this.Font.Style.ToString() });
            }
        }

        [ConfigCategory(ConfigCategory.LocalWindowsAccount)]
        public int WindowState
        {
            get
            {
                return this._WindowState;
            }
            set
            {
                this._WindowState = value;
            }
        }
    }
}

⌨️ 快捷键说明

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