事件顺序错误?

发布于 2024-10-28 05:37:45 字数 353 浏览 5 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(1

稚气少女 2024-11-04 05:37:45

这是已知的错误。可以通过捕获第一个事件并手动将其重新发送到消息泵(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.

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