我使用Caliburn Micro作为WPF应用程序中的MVVM框架。我如何选择数据网格控件中的所有复选框几乎没有问题。每个数据网格行都有复选框。
我绑定了List的datagrid属性类型。
型号:
public class Bill : INotifyPropertyChanged
{
public string CellPhoneNo
{
get { return _cellPhoneNo; }
set
{
_cellPhoneNo = value;
NotifyPropertyChanged("CellPhoneNo");
}
}
public bool IsSelected
{
get { return _isSelected; }
set
{
_isSelected = value;
NotifyPropertyChanged("IsSelected");
}
}
视图模型:
public IList<Bill> TmobileBill
{
get
{
return _tmobileBill;
}
set
{
_tmobileBill = value;
NotifyOfPropertyChange(()=>TmobileBill);
}
}
查看:
<Controls:DataGrid ItemsSource="{Binding Path= TmobileBill,
Mode=OneWay,
UpdateSourceTrigger=PropertyChanged}"
Style="{StaticResource FinalBillsView_CallsDataGrid}"
Grid.Row="0"
CanUserResizeRows="False">
<Controls:DataGrid.RowHeaderTemplate>
<DataTemplate>
<Grid>
<CheckBox IsChecked="{Binding Path=IsSelected, Mode=TwoWay,
RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type Controls:DataGridRow}}}"/>
</Grid>
</DataTemplate>
</Controls:DataGrid.RowHeaderTemplate>
<Controls:DataGrid.Columns>
<Controls:DataGridTextColumn IsReadOnly="True"
CellStyle="{StaticResource FinalBillsView_DataGrid_CellStyle}"
Binding="{Binding Path=CellPhoneNo}"
HeaderStyle="{StaticResource FinalBillsView_DataGridColHeaderStyle}"
Header="Cell phone No"/>
</Controls:DataGrid.Columns>
</Controls:DataGrid>
在datatemplate for datragrid row中,我绑定了checbox的属性IsChecked属性IsSelected from class Bill。
<Controls:DataGrid.RowHeaderTemplate>
<DataTemplate>
<Grid>
<CheckBox IsChecked="{Binding Path=IsSelected, Mode=TwoWay,
RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type Controls:DataGridRow}}}"/>
</Grid>
</DataTemplate>
</Controls:DataGrid.RowHeaderTemplate>
问题是我是否为列表中的所有项目设置属性IsSelected为true。
foreach (var row in TmobileBill)
{
row.IsSelected = true;
}
未选中View中的复选框。什么是问题的根源?
谢谢。
答案 0 :(得分:0)
IList<Bill>
更改为ObservableCollection<Bill>
<CheckBox IsChecked="{Binding Path=IsSelected, Mode=TwoWay}"/>
出于调试目的,与CheckBox下一个控件一起定义,以查看实际绑定到RowItem的内容:
<TextBlock Text="{Binding}"></TextBlock>