如何从 C# Xtragrid 列获取 checkBox 对象
大家好, 我在 C#.Net 应用程序中使用 DevExpress XtraGrid 控件。我将一个表中的值绑定到一个网格,并且该表包含一位字段:Authorized
。因此网格显示带有复选框的该列。我想获取该复选框对象或获取该控件的事件。
Hi all,
I'm using DevExpress XtraGrid control in a C#.Net application. I'mbinding the values from one table to a grid, and the table contains one bit field: Authorized
. So the grid displays that column with a checkBox. I want to get that checkBox object or get the event of that control.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 gridView.ActiveEditor 属性来获取当前打开的编辑器的引用。它在 CellValueChanged 事件处理程序中可用。
You may use the gridView.ActiveEditor property to get a reference of the currently open editor. It is available within the CellValueChanged event handler.
为什么不尝试使用与视图绑定的 CellValueChanged 或 CellValueChanging 事件?您可以使用 IDE 的属性列表来连接它,并在事件内部使用事件参数来决定您希望对哪一列进行操作。
Why don't you try using the CellValueChanged or CellValueChanging events tied to the view? You can use the IDE's property list to wire it up and inside the event use the event args to decide which column you wish to act upon.