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'
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
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
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