Devexpress中统一设置字体样式的方法

Posted donetcshap

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Devexpress中统一设置字体样式的方法相关的知识,希望对你有一定的参考价值。

#region 设置默认字体、日期格式、汉化dev
DevExpress.Utils.AppearanceObject.DefaultFont = new System.Drawing.Font("Tahoma", 12);

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

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















以上是关于Devexpress中统一设置字体样式的方法的主要内容,如果未能解决你的问题,请参考以下文章

第十五章 文本样式(上)

如何在.cs中统一动态修改xaml中style资源定义的样式

CSSCSS 文本样式 ② ( font 字体设置 | CSS 2.0手册使用 | font-weight 字体粗细设置 | font-style 字体斜体设置 | font 字体样式综合写法 )

CSS学习总结

CSS学习总结

CSS学习总结