本文介紹了顯示窗口后如何調用函數?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
使用 Qt 我創建了一個 QMainWindow 并想在窗口顯示后調用一個函數.當我在構造函數中調用該函數時,該函數(實際上是一個對話框)在窗口顯示之前被調用.
Using Qt I create a QMainWindow and want to call a function AFTER the windows is shown. When I call the function in the constructor the function (a dialog actually) get's called before the window is shown.
推薦答案
如果您想在小部件可見時做某事,您可以覆蓋 QWidget::showEvent 像這樣:
If you want to do something while the widget is made visible, you can override QWidget::showEvent like this:
class YourWidget : public QWidget { ...
void YourWidget::showEvent( QShowEvent* event ) {
QWidget::showEvent( event );
//your code here
}
這篇關于顯示窗口后如何調用函數?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!
【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!