如何更改 wxRadioButton 的前景色?
方法 wxRadioButton::SetForegroundColour 不起作用(参见 http://trac.wxwidgets.org/ticket/10137< /a>)。
有人知道如何让它发挥作用吗?我不明白wxWidgets控件的绘制过程,所以如果有人可以提供代码片段,将不胜感激。
多谢!
The method wxRadioButton::SetForegroundColour does not work (see http://trac.wxwidgets.org/ticket/10137).
Does anybody knows how to make it work? I don't understand the drawing process of wxWidgets controls, so if someone can provide pieces of code, it would be very appreciated.
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wxWidgets 使用本机单选按钮控件,因此如果您碰巧正在为 Windows 进行编程(使用 wxWidgets),则大多数控件和对话框中的颜色都是从“显示属性”的外观选项卡中定义的颜色“继承”的。如果您必须偏离系统规定的主题,您可能需要创建自己的单选按钮类。
wxWidgets uses the native radio button control, so if you happen to be programming for Windows (using wxWidgets), the colors in most controls and dialog boxes are "inherited" from the colors defined in the Appearance tab of "Display Properties". If you must deviate from the system dictated themes, you may need to create your own radio button class.