4

我的DataGridWPF 应用程序中有一个包含对象的控件。该对象有一个布尔属性,可以通过用户操作进行更改。当该属性的值更改时,我需要更改行的样式。

我写了一个来自以下的类StyleSelector

public class LiveModeSelector : StyleSelector {

    public Style LiveModeStyle { get; set; }
    public Style NormalStyle { get; set; }

    public override Style SelectStyle( object item, DependencyObject container ) {
        DataGridRow gridRow = container as DataGridRow;
        LPRCamera camera = item as LPRCamera;
        if ( camera != null && camera.IsInLiveMode ) {
            return LiveModeStyle;
        }
        return NormalStyle;
    }
}

有问题的 View Model 类实现了 ,并在有问题的属性更改时INotifyPropertyChanged引发事件。PropertyChanged

// Note:  The ModuleMonitor class implements INotifyPropertyChanged and raises the PropertyChanged
// event in the SetAndNotify generic method.
public class LPRCamera : ModuleMonitor, ICloneable {

    . . .

    public bool IsInLiveMode {
        get { return iIsInLiveMode; }
        private set { SetAndNotify( "IsInLiveMode", ref iIsInLiveMode, value ); }
    }
    private bool iIsInLiveMode;

    . . .

    /// </summary>
    public void StartLiveMode() {
        IsInLiveMode = true;

         . . .
    }


    public void StopLiveMode() {
        IsInLiveMode = false;

        . . .
    }
}

当用户执行所需的操作时,属性的值会更改,但样式不会更改。

我在 SelectStyle 方法中放置了一个断点,我看到第一次加载控件时断点被击中,但是当属性的值更改时它没有被击中。

我错过了什么?

4

2 回答 2

5

我找到了一种方法,它源于@Rachel 对我的问题的回答。但是,代码细节有些不同,我想确切地展示什么是有效的。

第一步是将两个不同Styles的类组合成一个DataGridRow类:

<Style TargetType="DataGridRow" x:Key="CameraStyle">
    <Setter Property="Foreground" Value="{DynamicResource TextForeground}" />
    <Setter Property="Background" Value="{DynamicResource DataBackground}" />
    <Style.Triggers>
        <DataTrigger Binding="{Binding Path=IsInLiveMode}" Value="True">
            <Setter Property="Foreground" Value="Red" />
            <Setter Property="Background" Value="Yellow" />
        </DataTrigger>
    </Style.Triggers>
</Style>

第二步是将DataGrid控件的RowStyle属性设置为这种新样式:

<DataGrid . . .
          RowStyle={StaticResource CameraStyle}">
          . . .
</DataGrid>

这行得通。当用户将LPRCamera与该行相关联的行置于实时模式时,该行的前景和背景会发生变化,当他们将其从实时模式中取出时会恢复正常,这就是我想要的。

谢谢@Rachel!

于 2012-08-27T21:38:28.897 回答
4

我不认为 a 会StyleSelector监听通知,因此当属性更改PropertyChange时它不会重新运行。IsInLiveMode

将您的样式放在一个DataTrigger基础上IsInLiveMode,它会在属性更改通知发出时重新评估。

<DataGrid.Resources>
    <Style TargetType="{x:Type DataGridRow}" x:Key="Style1">
        <Setter Property="Background" Value="Red" />
    </Style>
    <Style TargetType="{x:Type DataGridRow}" x:Key="Style2">
        <Setter Property="Background" Value="Blue" />
    </Style>
</DataGrid.Resources>

<DataGrid.Style>
    <Style TargetType="{x:Type DataGrid}">
        <Setter Property="RowStyle" Value="{StaticResource Style1}" />
        <Style.Triggers>
            <DataTrigger Binding="{Binding ElementName=MyDataGrid, Path=DataContext.IsInLiveMode}" Value="True">
                <Setter Property="RowStyle" Value="{StaticResource Style2}" />
            </DataTrigger>
        </Style.Triggers>
    </Style>
</DataGrid.Style>
于 2012-08-27T19:21:04.820 回答