谁能帮我改变 DevExpress Grid Control 的外观和感觉。现在我得到一个蓝色的 Grid Control ,我最好的猜测是我需要从 DevExpress.Xpf.Themes.DeepBlue.v12.1 更改默认主题到别的东西。任何人都可以帮我解决这个问题。
提前致谢
问问题
7346 次
2 回答
4
XAML:
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
dx:ThemeManager.ThemeName="Office2007Black">
于 2012-10-19T08:10:11.970 回答
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>
相关链接:DevExpress WPF 主题
于 2012-10-19T08:13:10.837 回答