如何在Win32上的WS_EX_CLIENTEDGE“编辑”文本字段中断文本行

时间:2016-01-22 01:33:12

标签: c++ winapi

我正在显示文字:

hWndText = CreateWindowEx(WS_EX_CLIENTEDGE, "Edit", cquestions.at(1).c_str(), WS_VISIBLE | WS_CHILD | WS_BORDER | ES_LEFT, 10, //x 10, //y TextFieldWidth, //width 100, //height hWnd, NULL, NULL, NULL);

cquestionsstd::vector<std::string>)。虽然结果如下所示。

enter image description here

我已尝试向其中插入"\n",但无效。

我怎样才能使文字包好?

1 个答案:

答案 0 :(得分:3)

您需要ES_MULTILINE样式才能使编辑控件显示多行文本。