using System.Drawing; namespace Microsoft.Windows.Forms { /// <summary> /// 默认值方案 /// </summary> public static partial class DefaultTheme { /// <summary> /// 默认字体 /// </summary> public static Font Font = new Font("微软雅黑", 9f, GraphicsUnit.Point); /// <summary> /// 默认字体 /// </summary> public const string _Font = "微软雅黑, 9pt"; } }