如何从 C# Xtragrid 列获取 checkBox 对象

发布于 2024-09-24 07:19:32 字数 206 浏览 5 评论 0原文

大家好, 我在 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.

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

轻许诺言 2024-10-01 07:19:32

您可以使用 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.

我的黑色迷你裙 2024-10-01 07:19:32

为什么不尝试使用与视图绑定的 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.

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