本文介绍了如何将 QPlainTextEdit 滚动到顶部?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在输入一些文本后自动滚动到 QPlainTextEdit 小部件的顶部.我怎么能意识到这一点?

I would like to automatically scroll to the top in a QPlainTextEdit widget after put in some text. How can I realize that?

推荐答案

myTextEdit -> moveCursor (QTextCursor::Start) ;
myTextEdit -> ensureCursorVisible() ;

这篇关于如何将 QPlainTextEdit 滚动到顶部?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 01:58