I have created a tooltip using wxRichToolTip, but I am unable to figure how to customize it. Like I want to add button in the tooltip.
Here is my code.
wxRichToolTip tip("Caps Lock is on",
"You might have made an error in your password\n"
"entry because Caps Lock is turned on.\n"
"\n"
"Press Caps Lock key to turn it off.");
tip.SetIcon(wxICON_WARNING);
tip.SetBackgroundColour("#003FC0", "#FFFFFF");
tip.ShowFor(this);
PS: I am new to wxWidgets