c# - How to change DevExpress GridControl default theme in WPF control which is used in MFC -
i using wpf control (which using devexpress gridcontrol) inside mfc application. need know way change it's default blue theme.
i tried:
devexpress.xpf.core.thememanager.applicationthemename = "office2007black";
and works fine, lon using control within wpf application. when put control inside mfc application, stops working.
got working magic line:
thememanager.setthemename(this, “office2007blue”);
Comments
Post a Comment