如何设置属性DropDownStyle
我在 DataGridView 列 DataGridViewComboBoxColumn 中创建。 我需要设置样式 DropDown。
this.combobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
怎么办?
I create in DataGridView column DataGridViewComboBoxColumn.
I need set style DropDown.
this.combobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
how do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DataGridViewComboBoxColumn.FlatStyle 属性。
FlatStyle
属性影响此列中单元格的下拉箭头的行为和外观。Use DataGridViewComboBoxColumn.FlatStyle Property. The
FlatStyle
property affects the behavior and appearance of the drop-down arrows for the cells in this column.