Devexpress控件使用皮肤,设置默认皮肤及动态换肤

DevExpress是一个比较有名的界面控件套件,提供了一系列的界面控件套件的DotNet界面控件。

关于皮肤的使用网上可以搜到很多示例,在些做个整理。

1.程序引用

DevExpress.BonusSkins

DevExpress.Utils

DevExpress.XtraEditors

2.启用皮肤,一般是在程序入口

DevExpress.UserSkins.BonusSkins.Register();
DevExpress.Skins.SkinManager.EnableFormSkins();

3.设置皮肤,如果希望程序启动时不使用默认皮肤

DevExpress.LookAndFeel.UserLookAndFeel.Default.SetSkinStyle(skinName);//skinName为皮肤名

4.动态换肤

/*空间及类名:*/DevExpress.XtraBars.Helpers.SkinHelper
/*
public static void InitSkinGallery(GalleryControl galleryControl);
public static void InitSkinGallery(RibbonGalleryBarItem galleryBarItem);
public static void InitSkinGallery(GalleryControl galleryControl, bool useDefaultCustomization);
public static void InitSkinGallery(RibbonGalleryBarItem galleryBarItem, bool useDefaultCustomization);
public static void InitSkinGallery(GalleryControl galleryControl, bool useDefaultCustomization, bool largeIcons);
public static void InitSkinGallery(RibbonGalleryBarItem galleryBarItem, bool useDefaultCustomization, bool useDefaultEventHandler);
public static void InitSkinGallery(GalleryControl galleryControl, bool useDefaultCustomization, bool largeIcons, bool useDefaultEventHandler);
public static void InitSkinGalleryDropDown(GalleryDropDown gallery);
public static void InitSkinGalleryDropDown(GalleryDropDown gallery, bool useDefaultEventHandler);
public static void InitSkinPopupMenu(BarLinksHolder skinMenu);
*/




你可能感兴趣的:(c#)