wx.Choicebook menu location

Is it possible to put the Choicebook menu where you select pages
somewhere besides the top of the parent widget?

I would like to create a wx.Choicebook with a smaller menu located in
a different location. Anyone know how?

Thanks in advance,
Chris

Hi Chris,

···

On Jul 13, 11:57 am, CMarshall <carletontriath...@gmail.com> wrote:

Is it possible to put the Choicebook menu where you select pages
somewhere besides the top of the parent widget?

I would like to create a wx.Choicebook with a smaller menu located in
a different location. Anyone know how?

Thanks in advance,
Chris

It looks like the Choicebook can be set to top, bottom, left or right
using the style parameter. (i.e. wx.CHB_BOTTOM, wx.CHB_LEFT,
wx.CHB_RIGHT, wx.CHB_TOP)

I used Andrea's helpful events/style hunter utility to find this out,
which you can get here: http://xoomer.virgilio.it/infinity77/Zipped/EventsInStyle.py

- Mike

Thanks, Mike. I had not seen Andrea's guide before. I will have to
make do with those four options.

-Chris

Hi,

···

On Jul 13, 2:03 pm, CMarshall <carletontriath...@gmail.com> wrote:

Thanks, Mike. I had not seen Andrea's guide before. I will have to
make do with those four options.

-Chris

Well, the Choicebook is basically just a notebook with a wx.Choice
widget controlling it. You could make your own wx.Choice widget that
shows and hides panels anyway you want it to. At least, that's my
impression.

Mike