请问VC#中突然DevExpress控件全部消失了? 如何解决? 谢谢!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问VC#中突然DevExpress控件全部消失了? 如何解决? 谢谢!相关的知识,希望对你有一定的参考价值。
卸载devExpress,然后退出VC#,然后重新安装DevExpress。再次打开VC#,就能看到DevExpress的控件了。没办法,用的不是正版软件。追问
不是工具栏的控件不见了, 工具栏的还在, 只是原来做好的程序界面中的控件不见了, 请问有什么办法?
追答我遇到过类似问题,尝试着新建一个窗体,把designer.cs的内容全部复制到新的窗体的designer.cs里面,有时好用,有时不行。
如果是工具条上的barButton,估计要重新拖了。
如何修改全部DevExpress控件的字体
引用:https://www.devexpress.com/Support/Center/Question/Details/A2761
You can change the default font used by DevExpress WindowsForms controls with the following static properties:
DevExpress.XtraEditors.WindowsFormsSettings.DefaultFont - Specifies the default font of controls (except menus and toolbars).
DevExpress.XtraEditors.WindowsFormsSettings.DefaultMenuFont - Specifies the default font used by menus and toolbars.
DevExpress.XtraEditors.WindowsFormsSettings.DefaultPrintFont - Specifies the default text font used when printing DevExpress controls.
可以通过修改以下静态属性:
DevExpress.XtraEditors.WindowsFormsSettings.DefaultFont - 指定控件的默认字体,除了菜单(menu)和工具栏(toolbar)
DevExpress.XtraEditors.WindowsFormsSettings.DefaultMenuFont - 指定菜单(menu)和工具栏(toolbar)的默认字体
DevExpress.XtraEditors.WindowsFormsSettings.DefaultPrintFont - 指定打印控件(printing)的默认文本字体
[STAThread]
static void Main() {
DevExpress.XtraEditors.WindowsFormsSettings.DefaultFont = new Font("Courier New", 10);
Application.Run(new Form1());
}
如果想改变某个控件的字体,需要通过设置AppearanceObject.Font属性(通常,外观属性都有名为“Appearance”的字样)
using DevExpress.Utils; using DevExpress.XtraGrid.Views.Grid; void SetGridFont(GridView view, Font font) { foreach(AppearanceObject ap in view.Appearance) ap.Font = font; } // USAGE: SetGridFont(gridView1, new Font("Courier New", 10));
以上是关于请问VC#中突然DevExpress控件全部消失了? 如何解决? 谢谢!的主要内容,如果未能解决你的问题,请参考以下文章
请问DEVExpress TreeList 控件怎么绑定数据? 是哪个事件触发绑定的?谢谢了!