I'm creating a GUI using wxPython that uses the wx.Notebook widget. Since I removed the labels on the Notebook tabs for design purposes, I would like to add tooltips for each tab individually that show the tab's purpose.
I thought I could use the AddPage()
method of the Notebook class. But it only returns bool values, so that I cannot use the SetToolTip()
method for either tab.
How would I go about doing that?