我正在显示文字:
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);
(cquestions
是std::vector<std::string>
)。虽然结果如下所示。
我已尝试向其中插入"\n"
,但无效。
我怎样才能使文字包好?
答案 0 :(得分:3)
您需要ES_MULTILINE
样式才能使编辑控件显示多行文本。