?? settings.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 + -