3

我正在与我的 wxTextCtrl 解决一个烦人的问题。无论我尝试什么,都无法添加新行。wxTextCtrl 显示一个方形字符而不是一个新行。
以下是相关代码:

wxTextCtrl  * detail = new wxTextCtrl (this,wxID_ANY);
detail->SetWindowStyle(wxTE_MULTILINE);
detail->SetEditable(false);

detail->AppendText("Some text");
detail->AppendText("\n New line");
detail->AppendText("\n An other new line\n");
detail->AppendText("Again a new line");  

我得到:

一些文字◻◻新行◻◻另一个新行◻◻又是一个新行

首先我认为Multiline属性有问题,但detail->IsMultiLine()返回true

任何帮助将不胜感激,

4

1 回答 1

6

构造对象时必须指定 Multiline 属性。之后您不能设置它。

从 wxWidgets 文档中,它特别提到了这一点:

Note that alignment styles (wxTE_LEFT, wxTE_CENTRE and wxTE_RIGHT) can be changed dynamically after control creation on wxMSW and wxGTK. wxTE_READONLY, wxTE_PASSWORD and wrapping styles can be dynamically changed under wxGTK but not wxMSW. The other styles can be only set during control creation.

代替:

detail->SetWindowStyle(wxTE_MULTILINE);

这应该工作:

wxTextCtrl(this,wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE);
于 2013-05-22T08:28:55.897 回答