是否可以在Web应用程序中像CSS这样的整个c#windows应用程序中设置字体样式?
答案 0 :(得分:0)
在配置中,
WindowsFormsApplication1.Properties.Settings.Default.UserFont = new Font("Arial", 24, FontStyle.Bold);
您可以在Form构造函数中的InitializeComponent()之前添加:
this.Font = SystemFonts.MessageBoxFont;