DevExpress Winform统一设置字体大小


winform 程序统一设置字体大小

Devexpress 环境中可以使用 (推荐)

DevExpress.XtraEditors.WindowsFormsSettings.DefaultFont = new System.Drawing.Font("Tahoma", 12);
DevExpress.XtraEditors.WindowsFormsSettings.DefaultMenuFont = new System.Drawing.Font("Tahoma", 12);

设置后Devexpress 程序中字体都会发生变化。

 

其他

Devexpress 统一设置Winform程序字体样式可以在Program的main方法中设置

#region 设置默认字体、日期格式、汉化dev
DevExpress.Utils.AppearanceObject.DefaultFont = new System.Drawing.Font(“Tahoma”, 9);
System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(“zh-CHS”);//使用DEV汉化资源文件
//设置程序区域语言设置中日期格式
System.Globalization.CultureInfo ci = new System.Globalization.CultureInfo(“zh-CHS”);
System.Globalization.DateTimeFormatInfo di = (System.Globalization.DateTimeFormatInfo)System.Threading.Thread.CurrentThread.CurrentCulture.DateTimeFormat.Clone();
di.DateSeparator = “-“;
di.ShortDatePattern = “yyyy-MM-dd”;
di.LongDatePattern = “yyyy”年”M”月”d”日””;
di.ShortTimePattern = “H:mm:ss”;
di.LongTimePattern = “H”时”mm”分”ss”秒””;
ci.DateTimeFormat = di;
System.Threading.Thread.CurrentThread.CurrentCulture = ci;
#endregion
版权声明:本文为YES开发框架网发布内容,转载请附上原文出处连接
YES开发框架
上一篇:Devexpress GridControl GridView双击事件优化
下一篇:YES-CMS 内容管理系统 TinyMCE编辑插件演示
评论列表

发表评论

评论内容
昵称:
关联文章

DevExpress Winform统一设置
(原创)WinForm中莫名其妙的BUG——RichTextBox自动选择词问题
Winform设置组件可用状态
Devexpress XtraTabControl设置
Devexpress RibbonControl设置大全
.net core winform继承后设计器异常,看不到控件,并且页无法添加控件
DevExpress 设置DateEdit显示年月
状态
Devexpress gridControl SummaryItem显示格式化设置DisplayFormat
权限
.NET Core Winform 打开窗设计器报错
自定义权限操作按钮
GridView布局自定义
winform组件OpenFileDialog控件Filter属性设置
Winform开发的快速、健壮、解耦的几点建议
YESWin Winform开发框架 代码生成器使用
YESWin Winform开发框架 Form窗继承关系
DevExpress RibbonControl 自定义右键弹出菜单
YESWin winform开发框架 新建一个业务模块项目
C# 扫描识别图片中的文(.NET Framework)

联系我们
联系电话:15090125178(微信同号)
电子邮箱:garson_zhang@163.com
站长微信二维码
微信二维码