DataGridView中有一列DataGridViewCheckBoxCell类型的,给这一列设置值
DataGridViewRow row = new DataGridViewRow();
DataGridViewCheckBoxCell c1 = new DataGridViewCheckBoxCell();
c1.Value = false;
row.Cells.Add(c1);我想问的是,这一列能不能像CheckBox控件一样,除了可以设置选中没选中之外,还可以设置它的text,显示在小方块的右面。如何能设,如何设,设置的哪个属性中去,没找到啊。