Re: How to place menu on the bottom

2008-08-30 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: What the problem is? the menu is drawn by the window system when you use the "menu" option, not by Tkinter. -- http://mail.python.org/mailman/listinfo/python-list

Re: How to place menu on the bottom

2008-08-30 Thread qxyuestc
On Aug 30, 6:04 pm, Fredrik Lundh <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > >         self.rootWin.config(menu=menuBar) > > I want to place the menu on the bottom (menuFrame.pack(side=BOTTOM, > > fill=X)). But it does not work. Why? > > menubars that are configured via the window menu

Re: How to place menu on the bottom

2008-08-30 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: self.rootWin.config(menu=menuBar) I want to place the menu on the bottom (menuFrame.pack(side=BOTTOM, fill=X)). But it does not work. Why? menubars that are configured via the window menu option are rendered by the underlying window system. to create a st

How to place menu on the bottom

2008-08-30 Thread qxyuestc
#!/usr/bin/env python import sys import os from tkinter import * def callback(self): #int this snippet, all menu entries use the same callback... print("callback") class DemoMenu(): def __init__(self): self.dataTemp = "" self.createWidgets() def createWidgets(s