I have created a side bar consisting of a few panels, when the user clicks on a panel I’d like a panel on the right next to the side bar to switch between different pages, much like a notebook. It would be great if I could use a standard wx.Notebook, but without the standard tabs and other stuff that is usually on top. Is that possible?
I have created a side bar consisting of a few panels, when the user clicks
on a panel I'd like a panel on the right next to the side bar to switch
between different pages, much like a notebook. It would be great if I could
use a standard wx.Notebook, but without the standard tabs and other stuff
that is usually on top. Is that possible?
On Wednesday, April 25, 2012 6:56:35 AM UTC-5, Soren wrote:
Hi,
I have created a side bar consisting of a few panels, when the user clicks on a panel I’d like a panel on the right next to the side bar to switch between different pages, much like a notebook. It would be great if I could use a standard wx.Notebook, but without the standard tabs and other stuff that is usually on top. Is that possible?
Best
Soren
In addition to what you found on my blog, there are lots of notebook widgets out there that might satisfy your needs. Take a look at the ListBook or ToolBook for example. Or you could create a wx.Notebook but pass it the wx.BK_RIGHT style flag.
On Wed, Apr 25, 2012 at 11:39 PM, Mike Driscoll <kyosohma@gmail.com> wrote:
Hi Soren,
On Wednesday, April 25, 2012 6:56:35 AM UTC-5, Soren wrote:
Hi,
I have created a side bar consisting of a few panels, when the user
clicks on a panel I'd like a panel on the right next to the side bar to
switch between different pages, much like a notebook. It would be great if
I could use a standard wx.Notebook, but without the standard tabs and other
stuff that is usually on top. Is that possible?
Best
Soren
In addition to what you found on my blog, there are lots of notebook
widgets out there that might satisfy your needs. Take a look at the
ListBook or ToolBook for example. Or you could create a wx.Notebook but
pass it the wx.BK_RIGHT style flag.