标签:tar property width rop 选择 选中 col prope idt
<DataGridCheckBoxColumn Width="80" Header="选择" Binding="{Binding Selected,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" >
<DataGridCheckBoxColumn.ElementStyle>
<Style TargetType="CheckBox" />
</DataGridCheckBoxColumn.ElementStyle>
</DataGridCheckBoxColumn>
///这个可以解决不能点击选择的问题
<DataGridCheckBoxColumn.ElementStyle>
<Style TargetType="CheckBox" />
</DataGridCheckBoxColumn.ElementStyle>
///这个可以解决选中后,把是否选择,属性通知改变到model里的对象数据里
UpdateSourceTrigger=PropertyChanged}
WPF DataGridCheckBoxColumn 绑定值后不能选中以及 能选中后,不能进行属性通知
标签:tar property width rop 选择 选中 col prope idt
原文地址:https://www.cnblogs.com/abc000/p/12197452.html