global.cs
来自「Windows Mobile用户签名程序」· CS 代码 · 共 29 行
CS
29 行
/*
Global properties and methods.
*/
using System;
using Common;
namespace DesktopSignature
{
/// <summary>
/// Global properties and methods.
/// </summary>
public class Global
{
// settings class that reads / writes to .config file
static Settings _settings = new Settings(SettingDefaults.Values);
static public Settings Settings
{
get { return _settings; }
}
// static class
private Global()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?