-
My goal is to enable selecting multiple rows in a TreeView and right-click to show a context menu, just like WinForm's ListView. On Windows, the context menu is supposed to show up at the moment when the user releases the mouse button, so I tried to add my event handler to the So, I thought that I need to handle |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Found answer. I need to add attribute |
Beta Was this translation helpful? Give feedback.
Found answer. I need to add attribute
[GLib.ConnectBefore]
to the event handler. This kind of thing needs to be documented.