在DataGridView控件中显示下拉列表
2021-06-22 22:06
标签:obj nbsp new idv info 显示 div orm form 实现效果: 知识运用: DataGridViewComboBoxColumn类 //通过该类可以创建下拉列表样式的列 实现代码: 在DataGridView控件中显示下拉列表 标签:obj nbsp new idv info 显示 div orm form 原文地址:https://www.cnblogs.com/feiyucha/p/10205520.html private void Form1_Load(object sender, EventArgs e)
{
DataGridViewComboBoxColumn dgvc = new DataGridViewComboBoxColumn();
dgvc.Items.Add("苹果");
dgvc.Items.Add("香蕉");
dgvc.Items.Add("葡萄");
dgvc.Items.Add("蜜桃");
dataGridView1.Columns.Add(dgvc);
}
文章标题:在DataGridView控件中显示下拉列表
文章链接:http://soscw.com/index.php/essay/97565.html