如何设置属性DropDownStyle

发布于 2024-11-17 07:47:02 字数 192 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

近箐 2024-11-24 07:47:02

使用 DataGridViewComboBoxColumn.FlatStyle 属性FlatStyle 属性影响此列中单元格的下拉箭头的行为和外观。

dataGridViewComboBoxColumn.FlatStyle = FlatStyle.Flat;

Use DataGridViewComboBoxColumn.FlatStyle Property. The FlatStyle property affects the behavior and appearance of the drop-down arrows for the cells in this column.

dataGridViewComboBoxColumn.FlatStyle = FlatStyle.Flat;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文