create a window like auipaneinfo

how i can create a window just the Borders without the captionbar like
the auipaneinfo what use

I guess you can use “& ~” or "^’ in style setting.

style=wx.DEFAULT_FRAME_STYLE & ~ (wx.CAPTION)

or

style=wx.DEFAULT_FRAME_STYLE ^ (wx.CAPTION)

···

On Mon, Jul 5, 2010 at 10:54 AM, iozk_Live iozk117@gmail.com wrote:

how i can create a window just the Borders without the captionbar like

the auipaneinfo what use

To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com

or visit http://groups.google.com/group/wxPython-users?hl=en


Z. HE