Is it possible to put buttons on window title bar, as in MS EXCEL?

Hi,

Microsoft Excel has “save”, “undo”, “redo” buttons on top left corner of window, on window title bar. Is it possible to do the same thing in wxpython?

You can add a Toolbar with those buttons. Of course, you will have to implement what each of those buttons does yourself.

Mike

···

On Thursday, July 10, 2014 2:31:43 PM UTC-5, steve wrote:

Hi,

Microsoft Excel has “save”, “undo”, “redo” buttons on top left corner of window, on window title bar. Is it possible to do the same thing in wxpython?

The pics of wx.Toolbar I found easily don’t seem to use the title/frame border for adding buttons onto:
http://wiki.wxpython.org/WorkingWithToolBars

···

On Friday, July 11, 2014 6:18:38 AM UTC-7, Mike Driscoll wrote:

On Thursday, July 10, 2014 2:31:43 PM UTC-5, steve wrote:

Hi,

Microsoft Excel has “save”, “undo”, “redo” buttons on top left corner of window, on window title bar. Is it possible to do the same thing in wxpython?

You can add a Toolbar with those buttons. Of course, you will have to implement what each of those buttons does yourself.

Mike

Yeah, it won’t look quite the same. wxPython is using the native OS widgets. Microsoft Excel is using something like WinForms (or whatever they call it now) to create their UI, so they have access to custom widgets of their own making. That is NOT a native widget type.

  • Mike
···

On Friday, July 11, 2014 11:36:58 AM UTC-5, Nathan McCorkle wrote:

The pics of wx.Toolbar I found easily don’t seem to use the title/frame border for adding buttons onto:
http://wiki.wxpython.org/WorkingWithToolBars