0

ウィンドウに 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
                }
            }

        }
4

1 に答える 1

1

と呼ばれるコレクションへDataGridのバインドがあります。さらに、列はこれらのオブジェクトのプロパティにバインドされています。ItemsSourceCustomersDataGridCheckBoxColumndelete

クリック ハンドラー内で、このプロパティが true に設定されているコレクション内のアイテムを検索するだけです。

private void OnClicked(object sender, RoutedEventArgs e)
{
   var items = Customers.Where(c => c.delete);
}
于 2013-09-25T19:42:37.307 に答える