Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
qlabel 中的自动换行模式仅适用于空格,但如果单个单词足够长,则它会被剪裁。 为了克服这个问题,我们可以使用 QTextEdit,它可以在任何地方提供自动换行功能,但是 QTextEdit 中没有可用的垂直对齐方式。那么是否有任何第三个好的选择或任何方式我可以在任何地方使用(固定大小)QLabel 中的自动换行或 QTextEdit 中的垂直对齐?
或者最后我必须手动打破 qlabel 中的单词。
阅读文档。QLabel::setWordWrap( bool )正是您正在寻找的。
QLabel::setWordWrap( bool )