Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 1.5 KB

File metadata and controls

26 lines (18 loc) · 1.5 KB

WinForms Data Grid - Display editors in a group row to edit cell values in the group

This example demonstrates how to display column editors in group rows. The user can use the editor to specify the same value for all cells in a column in a group.

You can also enable the GroupEditProvider.ShowGroupEditorOnMouseHover option to automatically invoke the group editor on mouse hover.

provider = new GroupEditProvider(gridView1);
provider.ShowGroupEditorOnMouseHover = true;
provider.SingleClick = true;
provider.EnableGroupEditing();

Files to Review