即使行数小于 QTextEdit 的高度,我也需要启用滚动条,如下图所示
我尝试了setDocumentMargin()
,但它在所有方向(左、右、上、下)留出了边距
那么,有没有办法只增加 QTextEdit 的下边距。
如果您观察source code ,我们看到该函数的定义如下:
void QTextDocument::setDocumentMargin(qreal margin)
{
// ...
QTextFrame* root = rootFrame();
QTextFrameFormat format = root->frameFormat();
format.setMargin(margin);
root->setFrameFormat(format);
// ...
}
因此,我们可以通过函数 rootFrame()
和 frameFormat()
执行相同的操作,如下所示:
if __name__ == '__main__':
import sys
app = QApplication(sys.argv)
textEdit = QTextEdit()
format = textEdit.document().rootFrame().frameFormat()
format.setBottomMargin(10)
# format.setTopMargin(value)
# format.setLeftMargin(value)
# format.setRightMargin(value)
textEdit.document().rootFrame().setFrameFormat(format)
textEdit.show()
sys.exit(app.exec_())
如果您只想使 QTextEdit 滚动条可见,请使用以下命令:
textEdit.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
textEdit.setVerticalScrollBarPolicy(Qt.ScrollBarAlwaysOn)
我是一名优秀的程序员,十分优秀!