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.
如何扩展QClipboard以允许选择所有打开的窗口中的所有文本。
QClipboard
请提供代码。
谢谢
请参阅QClipboard非常简单,仅用于文本
QClipboard *clipboard = QApplication::clipboard(); QString getCLipboardText = clipboard->text(); QString newClipboardText("blah blah"); clipboard->setText(newClipboardText);