DesktopListbox: working with double click on cells

Hello everyone
I have a DesktopListBox with filenames in it. When the user double clicks (event DoublePressed) an entry the filename gets editable. This works fine.
Now I want to make the file extension (separate column) also working the same way:
a) When the user double clicks the filename in the entry it gets editable
b) When the user double clicks the file extension in the entry it gets editable

Exactly what the event CellPressed offers but just like CellDoublePressed. Sadly the event DoublePressed doesn’t offer features like the event CellPressed.

The simple reason I need it that way is that a user can drag (rearrange) listbox entries and if wants to drag a record and hits by chance the extenion column he gets into editor mode.

So, is there a workaround for this?

You can store the row and column passed to the CellPressed event (store them in a property; better to have a listbox subclass to pack them with the listbox) and use those in the DoublePressed event.