如何摆脱 wxwidget 组合框组件中的文本选择?

发布于 2024-10-19 12:16:27 字数 624 浏览 1 评论 0原文

在我的程序中,我希望用户能够在一些选项之间进行选择,因此我使用了 wxChoice 组件。不幸的是,在用户交互(单击按钮)之后,我必须显示自定义文本(不是来自我的预定义列表)。如果我使用 wxCombobox 控件,一切都会正常工作,但这种方法的缺点是每次用户从列表中选择一个元素时,所选文本都会突出显示。这很烦人。我希望该组件是只读的。如何实现这一目标?

一些代码来可视化我的问题:

wxComboBox* viewAngle = wxDynamicCast( owner->FindWindow 
    ( ID_CHOICE_3D_VIEWANGLE ), wxComboBox );
viewAngle->SetSelection( wxNOT_FOUND );
viewAngle->SetValue(_("Custom View"));

编辑:

此控件用于在 3D 对象查看器应用程序中设置相机视图。可能的选项有:上、左、右等。用户也可以使用鼠标移动 3D 对象。在这种情况下,我希望我的组合框显示“自定义视图”字符串。但是,“自定义视图”不应成为组合框列表的一部分,因为选择此选项不会执行任何操作。 wxWidgets 默认实现总是标记选定的文本。这可能会误导用户,因为他可能认为他应该输入任何文本。

In my program I want the user to be able to choose between some options so I was using wxChoice component. Unfortunately after user interaction (clicking a button) I have to show custom text (not from my predefined list). Everything works fine if I use wxCombobox control but the drawback of this approach is that each time user selects an element from a list, selected text is highlited. It is annoying. I want the component to be read-only like. How to achieve this ?

Some code to visualize my question:

wxComboBox* viewAngle = wxDynamicCast( owner->FindWindow 
    ( ID_CHOICE_3D_VIEWANGLE ), wxComboBox );
viewAngle->SetSelection( wxNOT_FOUND );
viewAngle->SetValue(_("Custom View"));

EDIT:

This control is used to set camera view in 3D object viewer application. Possible options are like: top, left, right, etc. It is also possible that the user moves 3D object using mouse. In that case I want my combobox to display "custom view" string. However "custom view" should not be a part of combobox list because selecting this option does nothing.
wxWidgets default implementation alwasy marks selected text. Which might be misleading for the user because he might think that he is expected to input any text.

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

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

发布评论

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

评论(1

留一抹残留的笑 2024-10-26 12:16:27

恕我直言,自定义文本应该添加到 wxComboBox 控件中,当用户选择该选项时程序可能会忽略它。

另外,wxComboBox的wxCB_READONLY样式可以用来避免突出显示。

IMHO, the custom text should be added to the wxComboBox control, the program could just ignore it when user selects that option.

Also, the wxComboBox's wxCB_READONLY style could be used to avoid the highlighting thing.

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