Qt: 隱藏選單QMenu

pamxy發表於2013-06-16

轉自:http://www.cppblog.com/biao/archive/2009/09/16/96467.html

在Qt中,直接使用QMenu::hide()是不會隱藏這個選單的,想要隱藏選單,因為每個選單都是與QAction聯絡起來的,所以使用QMenu::menuAction()->setVisible(false),這樣,就可以把這個選單隱藏起來。

> The menu is represented in the menu bar using a QAction. In order to
> hide the menu "menuTest1" you have to hide its associated action. You
> can access that action using QMenu::menuAction(), like this:
>
> menuTest1->menuAction()->setVisible(false);

相關文章