我有一些带有各自按钮侦听器的图像按钮。
在 buttonClicked 函数上,我尝试:
void TestComponent::buttonClicked (Button* activeButton) {
if (activeButton == typeButton) {
//do something
}
}
但我明白了
"No match for operator == in activeButton..."
如何将父类 Button 相等运算符添加到 ImageButton?