任何人都可以帮我改变DevExpress网格控件的外观和感觉。现在我得到一个蓝色网格控件,我最好的猜测是我需要从DevExpress.Xpf.mes.DeepBlue.v12.1更改默认主题别的什么。任何人都可以帮我这个。
在此先感谢
答案 0 :(得分:4)
XAML:
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
dx:ThemeManager.ThemeName="Office2007Black">
答案 1 :(得分:2)
您应该只设置ThemeManager.ThemeName属性:
<Window x:Class="WpfApplication5.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
Title="Window1" Height="300" Width="300"
dx:ThemeManager.ThemeName="Office2007Black">
...
</Window>