0

我有一些带有各自按钮侦听器的图像按钮。

在 buttonClicked 函数上,我尝试:

void TestComponent::buttonClicked (Button* activeButton) {

    if (activeButton == typeButton) {

       //do something

    }

}

但我明白了

"No match for operator == in activeButton..."

如何将父类 Button 相等运算符添加到 ImageButton?

4

1 回答 1

1

activeButton 是一个指针。什么是类型按钮?

于 2012-11-13T06:46:14.567 回答