5

これは私の XAML コードです

<Window x:Class="Q316995.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:dxg="http://schemas.devexpress.com/winfx/2008/xaml/grid"
        xmlns:dxgt="http://schemas.devexpress.com/winfx/2008/xaml/grid/themekeys"
        xmlns:local="clr-namespace:Q316995"
        Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <ResourceDictionary>
        <Style x:Key="LastRowHighlighted"
                BasedOn="{StaticResource {dxgt:GridRowThemeKey ResourceKey=RowStyle}}"
                TargetType="{x:Type dxg:GridRowContent}">
        </Style>
    </ResourceDictionary>
</Window.Resources>
</Window>

その類似の背後にあるC#コードは

Binding _Binding = new Binding();
_Binding.Converter = new LastRowHighlighter();

Setter _Setter = new Setter();
_Setter.Property = GridRowContent.FontWeightProperty;
_Setter.Value = _Binding;

Style _Style = new System.Windows.Style();
//_Style.BasedOn = new Style(typeof(GridRowContent));
_Style.TargetType = typeof(GridRowContent);
_Style.Setters.Add(_Setter);

grid.Resources.Add("LastRowHighlighted", _Style);

交換方法がわからない

BasedOn="{StaticResource {dxgt:GridRowThemeKey ResourceKey=RowStyle}}"

c# コードで。Grid は Devexpress の GridControl です

4

1 に答える 1

1

このクラスには、new のベースとなるオブジェクトをStyle受け入れるコンストラクターがあります。見つかったプロパティを設定することもできます。StyleStyleStyle.BasedOn

Style以下を使用して、アプリケーションResourcesセクションからデフォルト セットにアクセスできます。

Application.Current.TryFindResource(typeof(GridRowContent));

したがって、次のことを試してください。

Style style = new Style(typeof(GridRowContent), Application.Current.TryFindResource(
typeof(GridRowContent)));
于 2013-08-19T11:49:30.493 に答える