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
Thats great, thanks Michael for the examples, I'll tinker with grid() and
place().
Cheers!
--zubin
> On Mon, 15 May 2006 15:42:48 -0400 (EDT)
> "Zubin Wadia" <[EMAIL PROTECTED]> wrote:
>
>> Hello Everyone,
>>
>> Another basic question in regar
Hello Everyone,
Another basic question in regard to frame layouts with Tkinter.
I want to create a basic quadrant of frames but am not able to follow the
logic to do so, whats the right way or an easier way to control layout of
frames and wigets. A pixel approach would be nice (where by you can
s
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