1


DevExpress Grid Control のルック アンド フィールを変更するのを手伝ってくれる人はいますか? 今、私は青い Grid Control を取得しています。私の最善の推測は、デフォルトのテーマを DevExpress.Xpf.Themes.DeepBlue.v12.1 から変更する必要があるということです。他の何かに.誰かがこれで私を助けることができます.
前もって感謝します

4

2 に答える 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 に答える