ウィンドウに DataGrid があり、DataGrid タイプ「DataGridCheckBox」内に列を配置し、同じウィンドウにボタンがありますが、問題は、ユーザーがこれをクリックしたときにユーザーがチェックするすべての行にインデックスを付ける方法がわからないことですボタン。コードは次のとおりです。
<Window x:Class="BenashManage.DeletePerson"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<Grid HorizontalAlignment="Right" Margin="0,0,0.4,-0.4" Width="546" >
<DataGrid Margin="15,104,13.6,48.8" Grid.Row="1" Name="GridEdite" ItemsSource="{Binding Customers}" AutoGenerateColumns="False" FlowDirection="RightToLeft" AlternatingRowBackground="AliceBlue" Grid.RowSpan="2" IsSynchronizedWithCurrentItem="True" CanUserResizeColumns="False" CanUserReorderColumns="False" SelectionMode="Single" SelectionUnit="CellOrRowHeader" >
<DataGrid.Columns>
<DataGridCheckBoxColumn Binding="{Binding Path=delete}" Header="حذف البيانات"/>
</DataGrid.Columns>
</DataGrid>
<Button Content="delete" Style="{DynamicResource BlueButtonStyle}" HorizontalAlignment="Left" Foreground="White" Margin="211,328.2,0,9.8" Grid.Row="2" Width="118" TextBlock.FontSize="20" Click="OnClicked"/>
</Grid>
後ろのコード:
private void OnClicked(object sender, RoutedEventArgs e)
{
DataGrid GridEdite = new DataGrid();
foreach (DataGridViewRow r in GridEdite.*****Rows*****)
//in keyword Rows error "'System.Windows.Controls.DataGrid' does not contain a definition for 'Rows' "
{
if (r.Cells["delete"].Checked)
{
r.BackgroundColor = Color.Red; // or do something else
}
}
}