help with create menu in wxpython

F

franciscodg

hi group:

I have the following code:

.......
.......
#MENU
menuFile = wx.Menu()
menuFile.Append(14, "E&xit","Sale del programa")

menuHelp = wx.Menu()
menuHelp.Append(41, "&about Mutamatic","Informacion de
Mutamatic")

menuBar = wx.MenuBar()
menuBar.Append(menuFile, "&File")
menuBar.Append(menuHelp, "&Help") #THIS IR IS THE PROBLEM!!!

self.SetMenuBar(menuBar)
self.sb = self.CreateStatusBar(1, wx.ST_SIZEGRIP)

#menu help
self.Bind(wx.EVT_MENU, self.OnAbout, id=41)
......
.....
.....


The question is the following: how can put the menu "HELP" in right
part of the window?

for example:

-------------------------------------
|FILE| |HELP|
-------------------------------------
| windows |
| |
-------------------------------------

Exist some attribute or function that does it??


thank you very much...

greeting
 
S

Stef Mientki

better ask in the wx discussion group:
(e-mail address removed)

cheers,
Stef Mientki
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top