Re: [Tutor] laying out a menu widget inside a frame

2006-05-16 Thread Michael Lange
On Mon, 15 May 2006 18:47:16 -0400 (EDT) "Zubin Wadia" <[EMAIL PROTECTED]> wrote: Hi Zubin, > root.config(relief=RIDGE, bg="lightblue", bd=3) doesn't seem to work it works for me (linux), maybe a platform issue? > I'm not sure if the menu() widget can be packed in a frame container?? > I don'

Re: [Tutor] laying out a menu widget inside a frame

2006-05-15 Thread Zubin Wadia
Hi Michael, root.config(relief=RIDGE, bg="lightblue", bd=3) doesn't seem to work I'm not sure if the menu() widget can be packed in a frame container?? Thanks --zubin >Hi Zubin, >there is a typo in your code, it should be > >master.config(menu=menubar) > >but this does not seem to be your

Re: [Tutor] laying out a menu widget inside a frame

2006-05-12 Thread Michael Lange
On Thu, 11 May 2006 15:03:53 -0400 (EDT) "Zubin Wadia" <[EMAIL PROTECTED]> wrote: > Hello All, > > from Tkinter import * > > class App: > #create a frame > def __init__(self, master): > frame = Frame(master, bg="LIGHTBLUE", relief=RIDGE, bd=3) > frame.pack(side=TOP, ipadx

Re: [Tutor] laying out a menu widget inside a frame

2006-05-11 Thread Zubin Wadia
Hello All, from Tkinter import * class App: #create a frame def __init__(self, master): frame = Frame(master, bg="LIGHTBLUE", relief=RIDGE, bd=3) frame.pack(side=TOP, ipadx=15, ipady=15, fill=X) ##create dropdown menu menubar = Menu(frame) fileme