Skip to content

DevExpress-Examples/winforms-grid-hide-group-footer-for-specific-level

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WinForms Data Grid - Hide the group footer for a specific group level

This example implements a custom grid control with the ShowGroupFooter event. This event allows you to hide the group footer based on a specific condition:

private void gridViewOverride1_ShowGroupFooter(object sender, ShowGroupFooterEventArgs e) {
  if ( e.FooterLevel == spinEdit1.Value && checkEdit1.Checked )
    e.Visible = false;
}

Files to Review

Documentation