1

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

4

1 回答 1

1

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

wxWindow::SetLayoutDirection    (   wxLayoutDirection   dir )

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

dir 可以是 wxLayout_Default、wxLayout_LeftToRight 或 wxLayout_RightToLeft。

于 2011-12-06T22:23:37.027 回答