1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| 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";
| }
| }
|
|