从 wxWindow 类访问 GetValue()

发布于 2024-10-11 16:03:19 字数 108 浏览 5 评论 0原文

如果将 wxWidgets 下的 GUI 控件声明为 wxWindow 而不是 wxCheckBox 或 wxRadioButton 等,是否有任何方法可以访问它的 GetValue() 成员? 谢谢。

Is there any way to access the GetValue() member of a GUI control under wxWidgets, if it is declared as a wxWindow rather than a wxCheckBox or wxRadioButton etc?
Thanks.

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

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

发布评论

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

评论(2

以可爱出名 2024-10-18 16:03:19

声明为 WxWindow 的对象不是 GUI 控件。声明为 WxWindow* 的指针可能指向 wxStaticText 对象或 wxCheckBox 对象。你必须做一个dynamic_cast< > 来找出答案。一旦您知道它是一个wxCheckBox,您就可以调用wxCheckBox::GetValue。同样,如果它是wxRadioButton,则可以调用wxRadioButton::GetValue

请注意,根据 C++ 规则,wxCheckBox::GetValue 和 wxRadioButton::GetValue 完全不相关。它们只是碰巧具有相同的方法名称。

An object declared as WxWindow is NOT a GUI control. A pointer declared as a WxWindow* might point to a wxStaticText object or a wxCheckBox object. You'd have to do a dynamic_cast< > to find out. Once you know it's a wxCheckBox, you can call wxCheckBox::GetValue. Similarly, if it's a wxRadioButton, you can call wxRadioButton::GetValue.

Note that per C++ rules, wxCheckBox::GetValue and wxRadioButton::GetValue are entirely unrelated. They just happen to have the same method name.

澜川若宁 2024-10-18 16:03:19

除非通过虚函数调用,否则您不能从基指针调用派生函数,所以不能。

不过,您可以沮丧并访问该功能。

You can't call a derivative's function from a base pointer unless it's through a virtual function call, so no.

You can downcast though and get access to that function.

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