DataGridViewColumn column9 = new DataGridViewColumn(new DataGridViewCheckBoxCell())
将上面这句换成下面的
DataGridViewCheckBoxColumn column9 = new DataGridViewCheckBoxColumn()
做了个小例子,这样子是可以的,供楼主参考:
在界面上放一个dataGridView1
private void Form1_Load(object sender, EventArgs e)
{
#region 准备数据源
Test test = new Test(true)
Test test1 = new Test(false)
List<Test>list = new List<Test>()
list.Add(test)
list.Add(test1)
list.Add(test1)
list.Add(test)
list.Add(test)
#endregion 准备数据源
#region 添加CheckBox列
//DataGridViewColumn column9 = new DataGridViewColumn(new DataGridViewCheckBoxCell())
DataGridViewCheckBoxColumn column9 = new DataGridViewCheckBoxColumn()
column9.HeaderText = "是否理科"
column9.Name = "IsScience"
//column9.DataPropertyName = "IsScienceNature"
column9.DataPropertyName = "IsChecked"
dataGridView1.Columns.Add(column9)
#endregion 添加CheckBox列
dataGridView1.DataSource = list
}
Test类:
public class Test
{
private bool _isChecked
public bool IsChecked
{
get { return _isChecked}
set { _isChecked = value}
}
public Test(bool isChecked)
{
_isChecked = isChecked
}
}
WinForm中的ListBox控件是用于显示一列选项或条目的常见工具。在WinForm中,可以使用ListBox.Items属性来添加和管理控件中的条目。如果您想添加控件而不是简单的文本,可以通过以下步骤完成:1. 首先,在Visual Studio中为您的项目添加一个控件。您可以选择任何您需要的控件类型,例如Label、Button、PictureBox等等。
2. 将控件添加到ListBox控件中,可以通过使用ListBox的Item.Add方法实现。这将在ListBox控件中添加一个新的ListItem对象。
3. 然后,您需要将新添加的控件与ListItem关联。这可以通过设置ListItem.Tag属性来完成。例如,您可以将控件实例赋给ListItem.Tag属性,这样就能够在ListBox中轻松地访问该控件。
4. 最后,您需要更新ListBox控件以显示已添加的控件。这可以通过调用ListBox的Refresh方法来完成。
下面是一个简单的示例代码,它向ListBox控件中添加了一个CheckBox控件:
```
// 创建一个新的CheckBox控件
CheckBox checkBox = new CheckBox()
checkBox.Width = 100
checkBox.Text = 选择
checkBox.Checked = true
// 将新的CheckBox添加到ListBox控件中
listBox1.Items.Add(new ListItem(Item with CheckBox, checkBox))
// 更新ListBox
listBox1.Refresh()
```
当然,如果您需要添加其他类型的控件,只需要按照类似的步骤 *** 作即可。需要注意的是,ListBox控件并不是最佳的容器类型,如果您需要在WinForm中添加更复杂的控件,可以考虑使用Panel或者TabControl等容器控件。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)