Word Wrap of Text in QLabel/bg: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
= Опаковане на думи от текст с QLabel = | = Опаковане на думи от текст с QLabel = | ||
Текстът в | Текстът в "QLabel":http://doc.qt.nokia.com/latest/qlabel.html може да опакова редове около ограничения за думи чрез "свойството wordWrap":http://doc.qt.nokia.com/latest/qlabel.html#wordWrap-prop. По подразбиране опаковането да думи е изключено. За да го включите използвайте setWordWrap(): | ||
<code> | <code> | ||
QLabel *pLabel = new QLabel(this); | |||
pLabel->setText("first line\nsecond line\nthird line\n"); | |||
pLabel->setWordWrap(true); |
Revision as of 13:06, 25 February 2015
Български English
Опаковане на думи от текст с QLabel
Текстът в "QLabel":http://doc.qt.nokia.com/latest/qlabel.html може да опакова редове около ограничения за думи чрез "свойството wordWrap":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");
pLabel->setWordWrap(true);