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.
有一个包含搜索关键字的 QListWidget 和一个包含一些文本的 QTextEdit。单击其中一个关键字应该会匹配 QTextEdit 中的单词并将相应的行滚动到顶部。
我将 QListWidget 和 QTextEdit 与信号/插槽连接并执行 QTextEdit::find(),这几乎会导致所需的行为。但不幸的是,包含关键字的行没有滚动到顶部,而是在 QTextEdit 的底部。我怎样才能轻松实现我的目标?
谢谢你的帮助,
克里斯
您可以尝试滚动到 QTextEdit 的末尾,然后搜索吗?这样它就会向上滚动到找到的单词。