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.
如何隐藏右键单击时出现的滚动条上下文菜单?
如果您有 QScrollArea,首先访问两个滚动条,然后使用以下命令将上下文菜单策略更改为 NoContextPolicy:
scrollArea->verticalScrollBar()->setContextMenuPolicy(Qt::NoContextMenu); scrollArea->horizontalScrollBar()->setContextMenuPolicy(Qt::NoContextMenu);