1. wxEuphoria:How to Set a Tooltip
- Posted by euphoric (admin) Apr 07, 2022
- 978 views
How do I assign or attach a tooltip to a control?
It looks like I have to create the tooltip as a control itself, but I don't see a function to attach it to a control.
2. Re: wxEuphoria:How to Set a Tooltip
- Posted by ghaberek (admin) Apr 08, 2022
- 960 views
How do I assign or attach a tooltip to a control?
IIRC you just need to call set_tip on the control and the system will display it automatically.
It looks like I have to create the tooltip as a control itself
You might be confusing "set tip" which handled by the system automatically versus "show tip" which is triggered manual by code using wxTipProvider, which is not implemented.
-Greg
3. Re: wxEuphoria:How to Set a Tooltip
- Posted by euphoric (admin) Apr 11, 2022
- 826 views
How do I assign or attach a tooltip to a control?
IIRC you just need to call set_tip on the control and the system will display it automatically.
Dang it! I kept searching for "tool" and not "tip."
Thank you!