事件顺序错误?
我有 wxTreeCrtl 和 wxPropertyGrid。
我处理 wxEVT_PG_CHANGED 来检查用户何时完成修改
,并处理
wxEVT_COMMAND_TREE_SEL_CHANGED 来检查用户何时更改树中的选择
现在想象一下这种情况: 我修改 propertyGrid 中的某些内容,并通过单击树中的某个对象(与当前选择的不同)来完成修改。 在 wxEVT_PG_CHANGED 之前发送 wxEVT_COMMAND_TREE_SEL_CHANGED 是正确的行为吗?
I have wxTreeCrtl and wxPropertyGrid.
I handle wxEVT_PG_CHANGED for checking when user finishes modifying
and
wxEVT_COMMAND_TREE_SEL_CHANGED for checking when user changes selection in tree
Now imagine this situation:
I modify something in propertyGrid and finish modifying by clicking on some object in tree(different then currently selected).
Is it correct behavior, that wxEVT_COMMAND_TREE_SEL_CHANGED is send before wxEVT_PG_CHANGED?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是已知的错误。可以通过捕获第一个事件并手动将其重新发送到消息泵(wxPostMessage)来解决。它将保证消息位于混乱的底部。泵和事件顺序将被修复。
It is known bug. It can be solved by catching first event and manually resend it into message pump (wxPostMessage). It will guarantee message is at bottom of mess. pump and event order will be fixed.