dgvQuery.Rows.Add();
DataGridViewComboBoxCell cbCell = new DataGridViewComboBoxCell();
cbCell.Items.Add("Ascending");
cbCell.Items.Add("Descending");
cbCell.Items.Add("[not sorted]");
dgvQuery[e.Index, 0] = cbCell;
dgvQuery[e.Index, 0].Value = "[not sorted]";
dgvQuery.Rows[0].HeaderCell.Value = "Sort";
dgvQuery.Rows.Add();
DataGridViewCheckBoxCell chkCell = new DataGridViewCheckBoxCell();
dgvQuery[e.Index, 1] = chkCell;
dgvQuery[e.Index, 1].Value = false;
dgvQuery.Rows[1].HeaderCell.Value = "Show";
dgvQuery.Rows.Add();
DataGridViewButtonCell btnCell = new DataGridViewButtonCell();
btnCell.Value = "Edit";
dgvQuery[e.Index, 2] = btnCell;
dgvQuery.Rows[2].HeaderCell.Value = "Criteria";