本文介紹了顯示窗口后如何調(diào)用函數(shù)?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
使用 Qt 我創(chuàng)建了一個 QMainWindow 并想在窗口顯示后調(diào)用一個函數(shù).當(dāng)我在構(gòu)造函數(shù)中調(diào)用該函數(shù)時,該函數(shù)(實(shí)際上是一個對話框)在窗口顯示之前被調(diào)用.
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
}
這篇關(guān)于顯示窗口后如何調(diào)用函數(shù)?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!
【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請聯(lián)系我們刪除處理,感謝您的支持!