0

我正在评估 DeveloperExpress WPF 控件。如何更改BackgroundColorDevExpress 的当前行GridControl

4

2 回答 2

1

我同意 Marc 的观点,一般来说,找到第 3 方控件解决方案的最佳位置是他们的文档和论坛;这是来自 devexpress 论坛帖子的代码片段 -

<Window x:Class="DXGrid_ChangeRowAppearance.Window1" 
        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" 
        Title="Window1" Height="300" Width="505">
    <Window.Resources>
        <Style x:Key="SelectedRowStyle" TargetType="{x:Type dxg:GridRowContent}">
            <Style.Triggers>
                <DataTrigger Binding="{Binding Path=IsSelected}" Value="True">
                    <Setter Property="Background" Value="Gray" />
                    <Setter Property="Foreground" Value="White" />
                </DataTrigger>
                <Trigger Property="dxg:GridViewBase.IsFocusedRow" Value="True">
                    <Setter Property="Background" Value="Red" />
                    <Setter Property="Foreground" Value="White" />
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Resources>
    <Grid>
        <dxg:GridControl x:Name="grid" AutoPopulateColumns="True">
            <dxg:GridControl.View>
                <dxg:TableView AutoWidth="True" MultiSelectMode="Row" 
                     ShowGroupPanel="False" 
                     AllowGrouping="False" 
                     RowStyle="{StaticResource SelectedRowStyle}">
                </dxg:TableView>
            </dxg:GridControl.View>
        </dxg:GridControl>
    </Grid>
</Window>

http://www.devexpress.com/Support/Center/p/E2066.aspx

我认为这里的关键是Property="dxg:GridViewBase.IsFocusedRow"在触发器中使用。

于 2012-06-08T19:00:39.480 回答
0

也许之前的这篇文章会对你有所帮助。

此外,我强烈建议在这里查看 devexpress 在线文档。

您也可以在 DevExpress 网站上搜索官方论坛。有很多人面临同样的问题。

希望能有所帮助。

于 2012-06-08T17:48:56.067 回答