C#dataGridView中设置ComboBox

时间:2024-03-29 20:06:31

方式一:

假设dataGridView的数据源是如下的dataTable ,现在要求“性别”一列点击变为可选ComboBox,Items为男或女,“表现分”一列要求点击时变为可选ComboBox,Items为1-10

姓名 性别 表现分
Raven 10

第一步: 变量定义

C#dataGridView中设置ComboBox

第二步:向当前窗体加载该ComboBox控件,并创建其TextChanged事件

C#dataGridView中设置ComboBox

第三步:在dataGridView的CellClick事件中去设置该ComboBox

C#dataGridView中设置ComboBox

               设置点击单元格内容的方法如下:

       C#dataGridView中设置ComboBox

第四步:运行结果如下

C#dataGridView中设置ComboBox