admin管理员组

文章数量:1291615

In C++ ~11 and Qt 5, when I use QGuiApplication::clipboard()->setText(<content>) repeatedly it doesn't stack the successive <content> into the clipboard history of Windows 10 (Windows+V). Instead the last entry in the clipboard gets overwritten every time, such that only the of last call to QGuiApplication::clipboard()->setText(<content>) will show up in the clipboard - along with the rest of (previous) history.

Is this expected ? Is there some what to manually stack up multiple entries in the Windows clipboard history from Qt ?

本文标签: Windows 10 clipboard history with Qt 5Stack Overflow