winform datagriew控件嵌套自定义下拉框怎么实现
时间: 2023-03-12 15:42:04 浏览: 104
C# winform 下拉框复选,效果看我的文章
5星 · 资源好评率100%
可以通过使用DataGridView的CellStyle.DataSource和CellStyle.ValueMember属性来实现。首先,你需要定义一个DataTable,并将它赋值给DataGridView.CellStyle.DataSource属性。接着,设置DataGridView.CellStyle.ValueMember属性以指定你想要显示的值的列名称。最后,设置DataGridView.CellStyle.DisplayStyle属性为DataGridViewComboBoxDisplayStyle.DropDownButton以让DataGridView显示下拉列表。
阅读全文