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);