0
我想將參數傳遞到選擇傳遞參數改變SLOT類似如下:Qt的:在的SelectionChanged()信號
connect(selectionModel, SIGNAL(selectionChanged (const QItemSelection &, const QItemSelection &, MyParameter)),
this, SLOT(OnSelection(const QItemSelection &, const QItemSelection &, MyParameter)));
,或者至少喜歡:
connect(selectionModel, SIGNAL(selectionChanged (MyParameter)),
this, SLOT(OnSelection(MyParameter)));
我想在SLOT
中使用MyParameter
。有沒有辦法做到這一點?是否有可能建立一個自定義selectionChanged()
信號?