网格视图组合框
如何将项目添加到数据网格视图组合框
how to add items to a data grid view combo box
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将项目添加到数据网格视图组合框
how to add items to a data grid view combo box
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
此处有一个非常好的示例。 基本上,组合框的创建和填充独立于数据绑定。
这是一个非常普遍的问题。 如果您遇到更具体的问题,请告诉我们。
You have a very good example here. Basically, the combobox is created and populated independently from the data binding.
This is a very generic question. If you're having more specific problems please let us know.
首先使用这样的模板字段将广告下拉列表添加到您的网格视图确保您将 OnRowCreated 事件添加到您的网格视图
接下来在代码后面将 GridView1_RowCreated 事件添加到您的 GridView
First add ad dropdownlist to your gridview with a template field like this Make sure you add an OnRowCreated Event to your gridview
Next in code behind Add a GridView1_RowCreated Event to your GridView