有没有办法在wxPerl(WxWidgets)中对wxChoice小部件中的项目进行独特的样式?
我试图弄清楚当我使用 wxChoice 小部件时是否可以对下拉菜单中的项目进行样式设置。据我所知,这是不可能的,但我只是想请求更大的 Perl 社区 100% 确定我的想法是正确的。
我的目标是将下拉菜单中的一些项目着色为红色,而其他项目则着色为黑色。我注意到 wxChoice 小部件具有 SetForegroundColour 方法,但是该方法为 wxChoice 小部件中的所有文本着色。
$driveCB->SetForegroundColour(wxRED);
下拉结果如下所示:
是这样吗可以单独设置 wxChoice 项目的样式吗?
I'm trying to figure out if it's possible to style the items in a drop-down menu when I use the wxChoice widget. Best I can tell, it's not possible but I just wanted to ask the greater Perl community to make 100% sure that I was correct in my thinking.
My goal would be to color some of the items in the pull-down red, while others were black. I noticed that the wxChoice widget has the method SetForegroundColour, but this colors all the text in the wxChoice widget.
$driveCB->SetForegroundColour(wxRED);
Results in a pull-down looking like this:
Is it possible to individually style wxChoice items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能用wxChoice来做到这一点,但你可以使用wxOwnerDrawnComboBox,有wxWidgets 示例中的一个示例位于名为combo 的文件夹中。
You can't do it with a wxChoice, but you could use a wxOwnerDrawnComboBox, there is an example of it in the wxWidgets samples, in the folder called combo.
文档说不
The documentation says NO