Solved
How to distinguish which custom container was clicked?
Hello,
I have a custom container with clicklistener, and I add two of this in my screen.
How to distinguish which custom container was clicked?
void CustomContainer::boxClickHandler(const touchgfx::Box& b, const ClickEvent& evt)
{
if (ClickEvent::PRESSED == evt.getType())
{
// How to distinguish which custom container was clicked?
...
}
else{}
}
