Delphi QuantumGrid - rowChanged 事件?
我正在使用 devExpress QuantumGrid,我想知道没有 onRowChange 事件。 如何确定所选行何时发生更改?
我可以使用 onCellClick 事件,但是当用户使用光标键滚动时不会触发该事件 - 它似乎不太适合该目的。
有什么想法吗? 多谢!
I'm using the devExpress QuantumGrid, and I'm wondering that there is no onRowChange event.
How can I determine when the selected row has changed?
I could use the onCellClick event, but this isn't fired when the user scrolls with the cursor keys - It doesn't seem very suitable for that purpose.
Any ideas?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
TcxGridTableView
类拥有OnSelectionChanged
事件。来自在线帮助:
The
TcxGridTableView
class owns theOnSelectionChanged
event.From the online help:
您可以使用数据集的事件 AfterScroll。当数据集的当前行发生更改时会触发它。
You can use the Dataset's event AfterScroll. It is fired when the current row of the dataset changes.
视图中的
OnFocusedRecordChanged
OnFocusedRecordChanged
from the view