1. 程式人生 > >eventFilter監聽this->window

eventFilter監聽this->window

移動 事件 filter 需要 構造函數 成功 想要 his 後來

一般installEventFilter可以寫在構造函數中,但是

想要監聽this->window,在構造函數中installEventFilter卻沒成功;

後來發現,this->window得等構造完成後再installEventFilter才行。

比如,可以寫在showEvent裏,就可以監聽this->window的事件了。

應用:子窗口想要跟隨主窗體移動,那麽就需要監聽this->window的Move事件。

eventFilter監聽this->window