Search code examples
pythonwxpython

Is it possible to delete/remove a wx.aui.AuiManager pane?


I want to remove a pane from the wx.aui.AuiManager.

Is it possible?


Solution

  • I'm not sure, but this might work:

    manager.DetachPane(pane)
    pane.Destroy()
    manager.Update()