WPF ICollectionView双向绑定?

时间:2016-08-27 10:18:22

标签: wpf binding datagrid icollectionview

我在DataGrid中显示一些数据,绑定到CollectionView。绑定工作正常,但似乎只是读取:检查网格中的复选框不会更新模型。

减少广告荒谬:

public class Item
{
    public bool IsChecked
    {
        get
        {
            return _isChecked;
        }
        set
        {
            // Not hit when clicking on checkbox
            _isChecked = value;
        }
    }
    private bool _isChecked;
}

代码隐藏,我的集合视图是依赖属性:

        private static DependencyProperty __CollectionViewProperty = DependencyProperty.Register
        (
           "_CollectionView",
           typeof( ICollectionView ),
           typeof( MyClass ),
           new PropertyMetadata( null )
        );

        private ICollectionView _CollectionView
        {
            get { return ( ICollectionView )GetValue( __CollectionViewProperty ); }
            set { SetValue( __CollectionViewProperty, value ); }
        }

并实例化如下:

List<Item> items = new List<Item>();
items.Add( new Item() );
this._CollectionView = CollectionViewSource.GetDefaultView( items );

在xaml中,我只是将DataGrid绑定到_CollectionView,将复选框绑定到IsChecked。没有例外,IsChecked的状态在UI中正确反映。

但是,单击该复选框仅更新UI,而不是模型。我是WPF的新手,来自Cocoa,相当于NSArrayController,绑定可以直接开箱即用。我错过了什么?

编辑:xml代码:

<DataGrid Grid.Row="1" ItemsSource="{ Binding _CollectionView}" AutoGenerateColumns="False" GridLinesVisibility="None"
                  RowHeight="60" ScrollViewer.VerticalScrollBarVisibility="Hidden" ScrollViewer.HorizontalScrollBarVisibility="Hidden"
                  CanUserReorderColumns="False" CanUserResizeColumns="False" CanUserSortColumns="True" IsSynchronizedWithCurrentItem="True"
                  x:Name="_DataGrid">
            <DataGrid.Columns>
                <DataGridTemplateColumn Header="" Width="90" CanUserSort="False">
                    <DataGridTemplateColumn.CellTemplate>
                        <DataTemplate>
                            <CheckBox IsChecked="{Binding IsChecked}" Click="CheckBox_Click" HorizontalAlignment="Left"/>
                        </DataTemplate>
                    </DataGridTemplateColumn.CellTemplate>
                </DataGridTemplateColumn>
            <DataGrid.Columns>
</DataGrid>

2 个答案:

答案 0 :(得分:0)

您是否尝试在类上实现INotifyPropertyChanged并定义您的IsChecked属性,如下所示:

 public virtual bool IsChecked
    {
        get
        { return _isChecked; }
        set
        {
            if (_isChecked != value)
            {
                _isChecked = value;
                OnPropertyChanged("IsChecked");
            }
        }
    }

答案 1 :(得分:0)

好的,明白了。

出于某些愚蠢的原因,默认绑定模式是绑定到集合时的OneWay,而UpdateSourceTrigger不是PropertyChanged。 docs提到绑定是单向的,但更新触发器也不同......

因此,xaml绑定变为:

<CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>

要对源正确传播到目标UI组件进行更改,最简单的方法是从DependencyObject继承,并将相关属性声明为依赖项属性:

public class Item : DependencyObject
{
        private static DependencyProperty __IsCheckedProperty = DependencyProperty.Register
        (
           "IsChecked",
           typeof( bool ),
           typeof( iOSAppItem ),
           new PropertyMetadata( true )
        );

        public bool IsChecked
        {
            get { return ( bool )GetValue( __IsCheckedProperty ); }
            set { SetValue( __IsCheckedProperty, value ); }
        }
}

根据文档,使用DependencyProperty也是the most efficient

最后,在List上选择ObservableCollection是一个好主意:项目的插入/删除将免费同步。