I need some c# code to select / deselect all checkboxes in a datagrid in WPF 3.5 framework. I would like to do this by clicking a single header checkbox in the grid.
Please help.
|
1
|
|
|
|
|
|
This is based on someone else's source that I can't recall, but we use it to help find visual children of a type. It may not be the most efficient use for this scenario but it might help get you on the right track.
[Edit 4.16.09] Based on that, try out this method. Should find all CheckBoxes and change the state as provided, callable from your event handler on the Checked/Unchecked events.
|
|||
|
|
|
|
I would use the new databinding features in WPF. Give all of the checkboxes a one-way binding on their IsChecked property with the binding source being the master checkbox's IsChecked property. Another option would be to use triggers |
||
|
|
|
|
Hi, I want code for select all checkbox in datagrid in C# winforms. Hope you can help me.. Regards, Shyam |
||
|
|
|
|
This can be done declaratively. The following creates a checkbox column for each row and which can toggle row selections. The header of the checkbox column can be clicked to do a select all of the rows. Relevant portions from the xaml
|
||
|
|
|
|
Well it is just a rough Idea, hope this works |
||
|
|