有没有办法在wxPerl(WxWidgets)中对wxChoice小部件中的项目进行独特的样式?

发布于 2024-12-10 08:53:03 字数 498 浏览 0 评论 0原文

我试图弄清楚当我使用 wxChoice 小部件时是否可以对下拉菜单中的项目进行样式设置。据我所知,这是不可能的,但我只是想请求更大的 Perl 社区 100% 确定我的想法是正确的。

我的目标是将下拉菜单中的一些项目着色为红色,而其他项目则着色为黑色。我注意到 wxChoice 小部件具有 SetForegroundColour 方法,但是该方法为 wxChoice 小部件中的所有文本着色。

$driveCB->SetForegroundColour(wxRED);

下拉结果如下所示:

wxChoice example using SetForegroundColour

是这样吗可以单独设置 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:

wxChoice example using SetForegroundColour

Is it possible to individually style wxChoice items?

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

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

发布评论

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

评论(2

倥絔 2024-12-17 08:53:03

你不能用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.

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