DefaultTheme.00.Font.cs 463 B

12345678910111213141516171819
  1. using System.Drawing;
  2. namespace Microsoft.Windows.Forms
  3. {
  4. /// <summary>
  5. /// 默认值方案
  6. /// </summary>
  7. public static partial class DefaultTheme
  8. {
  9. /// <summary>
  10. /// 默认字体
  11. /// </summary>
  12. public static Font Font = new Font("微软雅黑", 9f, GraphicsUnit.Point);
  13. /// <summary>
  14. /// 默认字体
  15. /// </summary>
  16. public const string _Font = "微软雅黑, 9pt";
  17. }
  18. }