Skip to content

Instantly share code, notes, and snippets.

@Zujaj
Last active October 12, 2020 10:21
Show Gist options
  • Save Zujaj/b991426f1305a6d1f948d7d6d68bd8e0 to your computer and use it in GitHub Desktop.
Save Zujaj/b991426f1305a6d1f948d7d6d68bd8e0 to your computer and use it in GitHub Desktop.
Enable or Disable DataGridView AutoFiltering
/// <summary>
/// Enable filtering on grid columns by setting the value to true.
/// It's false by default.
/// </summary>
/// <param name="value"></param>
private void EnableGridFilter(bool value)
{
RankColumn.FilteringEnabled = value;
OccupationColumn.FilteringEnabled = value;
JobColumn.FilteringEnabled = value;
SalaryColumn.FilteringEnabled = value;
RateColumn.FilteringEnabled = value;
DateColumn.FilteringEnabled = value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment