Hide a Column in the DataGridView



Hide a Column in the DataGridView

If you would like to hide a column based on a certain condition, here’s a snippet for that.
C#
private void btnHide_Click(object sender, EventArgs e)
        {
            this.dgv.Columns["EmployeeID"].Visible = false;
        }

No comments:

Post a Comment