Right Click

MisterMage

02-04-2012 21:39:58

Quick question...

Does MyGUI support right clicking? Like right click on an item in a ListBox and having more options? Like a chat-room for instance, right click on a user list to kick/block/report/add friend, something along those lines.

Tubulii

09-04-2012 17:25:29

You could catch any click on the listbox (just listen to the events) and check whether an item was clicked or not. If yes, display a popupmenu. It's the same way like with Windows Forms.

MisterMage

09-04-2012 17:35:27

Yeah I was looking through the documentation and found the event hook I was hoping for. Thanks for confirming :)