收集更新后不发射转换器



我已经遇到了转换器的问题...一旦绑定集合被更新,尽管它们首先触发了绑定时,但他们就不会触发。每当系列发生变化时,我想让他们开火。

到目前为止,我已经构建了一个简单的转换器:

public class TableConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        VM.Measurement t = ((VM.Measurement)((TextBlock)value).DataContext);
        if (t.Delta != null)
        {
            if (Math.Abs((double)t.Delta) < t.Tol)
                return "Green";
            else
                return "Red";
        }
        else
            return "Red";
    }
    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

链接到样式

<conv:TableConverter x:Key="styleConvStr"/>
<Style x:Key="CellStyleSelectorTol" TargetType="syncfusion:GridCell">
    <Setter Property="Background" Value="{Binding   RelativeSource={RelativeSource Self}, Path=Content, Converter={StaticResource styleConvStr}}" />
</Style>

在此datagrid中使用

 <syncfusion:SfDataGrid x:Name="CheckGrid" BorderBrush="White" Grid.Row="1" Grid.Column="1" AllowEditing="True"  ItemsSource="{Binding ChecksList, Mode=TwoWay}"  Background="White"   SnapsToDevicePixels="False"
                            ColumnSizer="None"  AllowResizingColumns="False" AllowTriStateSorting="True" AllowDraggingColumns="False" CurrentCellEndEdit="CheckGrid_CurrentCellEndEdit" AutoGenerateColumns="False"
                            NavigationMode="Cell" HeaderRowHeight="30" RowHeight="21"   GridPasteOption="None" Margin="20 10 10 10" AllowGrouping="True" SelectedItem="{Binding SelectedLine, Mode=TwoWay}"
                           SelectionUnit="Row"  SelectionMode="Single" RowSelectionBrush="#CBACCB"  VirtualizingPanel.IsVirtualizing="True"  Visibility="Visible">
                                <syncfusion:GridTextColumn Width="100" ColumnSizer="SizeToCells" AllowEditing="True"  MappingName="Measured" CellStyle="{StaticResource CellStyleSelectorTol}" HeaderText="Measured" TextAlignment="Center"   AllowFiltering="False" FilterBehavior="StringTyped"/>

VM包含一个可观察到的集合,该集合将通知properpertychangangangangange始终到测量类别。这些属性很好地启动,因此这不是一个具有约束力的问题。

 private ObservableCollection<Measurement> _checkList = new ObservableCollection<Measurement>();
    public ObservableCollection<Measurement> ChecksList
    {
        get
        {
            return _checkList;
        }
        set
        {
            _checkList = value;
            NotifyPropertyChanged();
        }
    }

对此的任何帮助将不胜感激。

谢谢

编辑:这是更新集合的代码。很抱歉,这很混乱。LineItem是所选的线路,并为其更新的Delta。这些修改后正确显示在网格中。

public void NewMeasurement(VM.Measurement measurementShell)
{
    using (VMEntity DB = new VMEntity())
    {
        var Check = CheckSets.Where(x => x.ID == SelectedLine.ID).First();
        if (Check.Measurement == null)
        {
            Check.Measurement = measurementShell.Index;
            var Lineitem = ChecksList.Where(x => x.ID == SelectedLine.ID).First();
            var measurement = DB.Measurements.Where(x => x.Index == Check.Measurement).First();
            Lineitem.Measured = (double)measurement.measurement1;
            Lineitem.Delta = Lineitem.Measured - Lineitem.Target;

好吧,看起来问题是您正在更改的属性 celt content item( LineItem,在NewMeasurement()方法中(,但仍然相同对象,因此单元格的内容不会改变。单元格的Content是绑定的来源。如果没有改变,绑定将不会唤醒并更新目标。您正在筹集PropertyChanged,但是这种特殊的绑定无法知道您希望它会听取属性更改的对象。足够容易的修复:我们将开始告诉它要聆听什么。

幸运的是,解决方案意味着简化您的某些代码。将UI控件传递到值转换器中是异国情调的,不是必需的。

您在转换器中关心的是Measurement.DeltaMeasurement.Tol。当任何一个更改时,绑定都应更新其目标。您不想以巧妙的方式这样做。您只需要一个Binding。那是Binding的工作。

所以告诉Binding您关心这些属性,然后重写转换器以接受两个属性。

<Style x:Key="CellStyleSelectorTol" TargetType="syncfusion:GridCell">
    <Setter 
        Property="Background" 
        >
        <Setter.Value>
            <MultiBinding Converter="{StaticResource styleConvStr}">
                <Binding Path="Delta" />
                <Binding Path="Tol" />
            </MultiBinding>
        </Setter.Value>
    </Setter>
</Style>

转换器:

public class TableConverter : IMultiValueConverter
{
    public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
    {
        //  I'm inferring that Measurement.Delta is Nullable<double>; if that's 
        //  not the case, change accordingly. Is it Object instead? 
        double? delta = (double?)values[0];
        double tol = (double)values[1];
        if (delta.HasValue && Math.Abs(delta.Value) < tol)
        {
            return "Green";
        }
        return "Red";
    }
    public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

相关内容

  • 没有找到相关文章

最新更新