wxWidgets 从右到左方向

发布于 2024-12-20 06:22:10 字数 92 浏览 2 评论 0原文

我有一个 wxWidgets 表单,上面有一个 wxTextCtrl,默认情况下它具有从左到右的方向。我想将其更改为从右到左的方向。 我怎样才能在 C++ 上做到这一点。

I have a wxWidgets form and I have a wxTextCtrl on it, it has left-to-right direction by default. I want to change it to right-to-left Direction.
how can I do this on C++.

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

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

发布评论

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

评论(1

摘星┃星的人 2024-12-27 06:22:10

您可以设置任何窗口的布局方向,如下所示:

wxWindow::SetLayoutDirection    (   wxLayoutDirection   dir )

http://docs.wxwidgets.org/trunk/classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9

目录可以是 wxLayout_Default、wxLayout_LeftToRight 或 wxLayout_RightToLeft。

You can set the layout direction of any window, like this:

wxWindow::SetLayoutDirection    (   wxLayoutDirection   dir )

http://docs.wxwidgets.org/trunk/classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9

dir may be either wxLayout_Default, wxLayout_LeftToRight or wxLayout_RightToLeft.

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