datagridview checkbox

  1. C

    Question DataGridViewCheckBoxColumn Rows Unchecked by Default?

    All of the selection rows in a DataGridView are checked, and I'm trying to set them unchecked at startup. This didn't work for me: private void Form1_Load(object sender, EventArgs e) { DataGridViewCheckBoxColumn chkbox = new DataGridViewCheckBoxColumn(); chkbox.HeaderText = "Select"...
Back
Top Bottom