.net 2.0 datagrid视图组合框Windows应用程序
我有一个数据网格,当我单击按钮时会添加一个新行。 新行由每个单元格中的下拉菜单组成。 下一个单元格下拉列表的值必须基于第一个单元格下拉列表,依此类推第三个单元格。 我在 c# 中使用 .net 2.0 windows 应用程序
I have a data grid, a new row is added when i click on button. the new row consists of dropdowns in each cell. the value of the next cell dropdown must be based on the first cell drop down and so on for the third cell. I am using a .net 2.0 windows application in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 CellEndEdit 事件并检查编辑第一个下拉列表时选择的内容,然后您可以操作其他下拉列表。
Use the CellEndEdit event and check what is selected when the first drop down is edited, then you can manipulate the others.