wxWidgets 从右到左方向
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以设置任何窗口的布局方向,如下所示:
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:
http://docs.wxwidgets.org/trunk/classwx_window.html#a7d494549f7fcfed44af95f8ee364c1f9
dir may be either wxLayout_Default, wxLayout_LeftToRight or wxLayout_RightToLeft.