I have a GUI that include a TGListBox. Everything works great, but I would like to make it easier for me to select entries. Right now I have to double click on them to actually trigger the “Selected(Int_t)” member function for the first time. Then single clicks are enough.
I would like to make it work with keyboards arrow (you can highlight entries with arrows, but it does not actually trigger “Selected(Int_t)”). Is it actually possible ?
It works as intended
I have just a question on the first line of the CurrentChanged function, how does gTQSender is related to the TListBox object ? Is it sort of global variable that point to a “current container” ?