DataGridViewComboBox 空值
我有一个带有组合框列的 Windows 窗体 DataGridView。组合框列绑定到从 Linq to Entities 查询填充的数据源。我希望用户能够在组合框中选择“Nothing”(为基础数据源分配 NULL 值)。
我怎样才能做到这一点?
I have a Windows forms DataGridView with a combobox column. The combo box column is bound to a data source that is populated from a Linq to Entities query. I would like users to be able to select "Nothing" in the combo box (assign a value of NULL to the underlying data source).
How can I accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DataGridView 支持按 Ctrl+0 按键在单元格中输入 null 值,因此您可以使用它来清除组合框的值并将其设置回 null。
DataGridView supports the Ctrl+0 keystroke to enter a null value into a cell, so you can use that to clear out a combo box's value and set it back to null.