正常狀態消息 - 除非顯示臨時消息,否則這些消息始終由應用程序顯示。這就是我對正常狀態信息的瞭解。因此,使用這些代碼對我的構造Qt正常狀態欄在臨時狀態後不顯示
ui.statusbar->showMessage("Temp message", 3000); // ui is the Ui::AutoGenHeaderForForm
QLabel *label = new QLabel;
ui.statusBar->addWidget(label);
label->setText("hello world");
我得到的是,當我運行項目中,我得到了狀態臨時消息,持續3秒。然後我沒有拿到hello world回來。如果hello world在3秒後自動出現在的位置溫度訊息?
其實我想要沒有QStatusBar :: addPermanentWidget。 – Dewsworld 2012-03-13 16:30:23