DevExpress 窗体 (包括 XtraForm、XtraMessageBox、由 DevExpress 控件显示的多种对话框和消息框) 支持标题栏换肤功能。 下面的插图展示了一个使用了 Caramel 皮肤绘制的窗体,它的标题栏换肤功能已被激活:
标题栏换肤概念
可能要稍后才调用 SkinManager.EnableFormSkins 方法。 在这种情况下,DevExpress.LookAndFeel.LookAndFeelHelper.ForceDefaultLookAndFeelChanged 方法需要在调用 SkinManager.EnableFormSkins 方法之后被调用。 它强制让窗体标题栏被重新绘制:
C# | 复制代码 |
---|---|
DevExpress.Skins.SkinManager.EnableFormSkins(); DevExpress.LookAndFeel.LookAndFeelHelper.ForceDefaultLookAndFeelChanged(); |
Visual Basic | 复制代码 |
---|---|
DevExpress.Skins.SkinManager.EnableFormSkins() DevExpress.LookAndFeel.LookAndFeelHelper.ForceDefaultLookAndFeelChanged() |
要禁用窗体标题栏换肤功能,则调用 SkinManager.DisableFormSkins 方法,然后调用 DevExpress.LookAndFeel.LookAndFeelHelper.ForceDefaultLookAndFeelChanged 方法。
使用 SkinManager.AllowFormSkins 方法来检查标题栏换肤功能当前是否被激活。
DevExpress MDI 子窗体的标题栏换肤
SkinManager.EnableFormSkins 和 SkinManager.DisableFormSkins 方法不影响 MDI 子窗体标题栏的换肤。 要激活 DevExpress MDI 子窗体的标题栏换肤功能,可使用 SkinManager.EnableMdiFormSkins 方法。 使用 SkinManager.DisableMdiFormSkins 方法则禁用此功能。 使用 SkinManager.EnableMdiFormSkins 和 SkinManager.DisableMdiFormSkins 方法,与使用 SkinManager.EnableFormSkins 和 SkinManager.DisableFormSkins 方法是等效的。