A Simple Menu , Stretching the Window Width--Tkinter

W

W. eWatson

I'd like to create a simple Menu bar with one item in it, say, called "My
Menu", and have a few submenu items on it like "Change Data" and "Exit". I
can do that but I'd like the title I put on the enclosing window to be
completely visible. The title is, for example, "Hello, out there. This is a
simple menu". Presently the window shrinks in width the accommodate "My
Menu", and I see "Hello, out th". How do I force the width to accommodate
the whole title?
--
W. eWatson

(121.015 Deg. W, 39.262 Deg. N) GMT-8 hr std. time)
Obz Site: 39° 15' 7" N, 121° 2' 32" W, 2700 feet

Web Page: <www.speckledwithstars.net/>
 
J

John Posner

If you're having trouble with the size of the overall ("root" or "toplevel")
window, this might help:

rootwin = Tk()
# width=500, height=350, upper-left-corner at (50,50) -- revise to suit
rootwin.geometry('500x350+50+50')
rootwin.resizable(False, False)
rootwin.title("Hello, out there")

-John





E-mail message checked by Spyware Doctor (6.0.0.386)
Database version: 5.11880
http://www.pctools.com/en/spyware-doctor-antivirus/
 
W

W. eWatson

John said:
If you're having trouble with the size of the overall ("root" or "toplevel")
window, this might help:

rootwin = Tk()
# width=500, height=350, upper-left-corner at (50,50) -- revise to suit
rootwin.geometry('500x350+50+50')
rootwin.resizable(False, False)
rootwin.title("Hello, out there")

-John





E-mail message checked by Spyware Doctor (6.0.0.386)
Database version: 5.11880
http://www.pctools.com/en/spyware-doctor-antivirus/
Yep, that works. Thanks.

--
W. eWatson

(121.015 Deg. W, 39.262 Deg. N) GMT-8 hr std. time)
Obz Site: 39° 15' 7" N, 121° 2' 32" W, 2700 feet

Web Page: <www.speckledwithstars.net/>
 

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
474,262
Messages
2,571,059
Members
48,769
Latest member
Clifft

Latest Threads

Top