Questions tagged [wxnotebook]

46 questions
-1
votes
1 answer

add pages on button press (wx.Notebook)

i have wx.Notebook and 2 pages: nb = wx.Notebook(PanelLobby,wx.ID_ANY,pos=(100,100),size=(413,214)) nb.AddPage(page1,"Page 1",select=True) nb.AddPage(page2,"Page 2") i want to add pages to it on button press, i tried to bind a wx.EVT_LEFT_DOWN…
1 2 3
4