TTMSFNCListBox with Gestures

I have a working ListBox in an FMX Delphi 13 project that is populated with entries at runtime. Normal selection works.
Now I wanted to display a context menu by right-clicking or long-clicking on a selection in order to implement additional functions. I have not been able to do this.
Neither through the described methods for a right-click nor through the GestureManager for standard gestures or interactive gestures. The events seem to always get lost; none of the event functions are called.
It should work for Windows, Linux, and Android.
Is there an example?

Thanks and best regards,
Siegmar Zander

Hi, the TTMSFNCListBox is a component that deviates from the standard component hierarchy in this sense that it encapsulates a TTMSFNCTreeView. Gestures would be consumed not by TTMSFNCListBox, but by the internal TTMSFNCTreeView. You can attach the gestures programmatically to TMSFNCListBox1.TreeView. It’s on our todolist to investigate if we can workaround this.