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

📄 settings.cs

📁 这是一个局域网聊天工具的源代码. 采用UDP通信
💻 CS
字号:
namespace XChat.Properties
{
    using System;
    using System.CodeDom.Compiler;
    using System.ComponentModel;
    using System.Configuration;
    using System.Diagnostics;
    using System.Runtime.CompilerServices;

    [CompilerGenerated, GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")]
    internal sealed class Settings : ApplicationSettingsBase
    {
        private static Settings defaultInstance = ((Settings) SettingsBase.Synchronized(new Settings()));

        private void SettingChangingEventHandler(object sender, SettingChangingEventArgs e)
        {
        }

        private void SettingsSavingEventHandler(object sender, CancelEventArgs e)
        {
        }

        public static Settings Default
        {
            get
            {
                return defaultInstance;
            }
        }

        [DefaultSettingValue(""), UserScopedSetting, DebuggerNonUserCode]
        public string nickName
        {
            get
            {
                return (string) this["nickName"];
            }
            set
            {
                this["nickName"] = value;
            }
        }

        [DefaultSettingValue("58888"), UserScopedSetting, DebuggerNonUserCode]
        public int port
        {
            get
            {
                return (int) this["port"];
            }
            set
            {
                this["port"] = value;
            }
        }

        [DefaultSettingValue("Z"), DebuggerNonUserCode, UserScopedSetting]
        public string txtShowSet
        {
            get
            {
                return (string) this["txtShowSet"];
            }
            set
            {
                this["txtShowSet"] = value;
            }
        }
    }
}

⌨️ 快捷键说明

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