Word Wrap of Text in QLabel/bg

From Qt Wiki
< Word Wrap of Text in QLabel
Revision as of 07:20, 24 February 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Български English

Опаковане на думи от текст с QLabel

Текстът в "QLabel&quot;:http://doc.qt.nokia.com/latest/qlabel.html може да опакова редове около ограничения за думи чрез "свойството wordWrap&quot;:http://doc.qt.nokia.com/latest/qlabel.html#wordWrap-prop. По подразбиране опаковането да думи е изключено. За да го включите използвайте setWordWrap():


QLabel *pLabel = new QLabel(this);
pLabel->setText("first line\nsecond line\nthird line\n&quot;);
pLabel->setWordWrap(true);