0
我顯示的文本:如何打破對WS_EX_CLIENTEDGE 「編輯」 文本字段中的文本行的Win32
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"
到它,但它不會起作用。
我該怎麼做才能讓文字換行?