tkinter: invisible PanedWindow "sashes" on OS X

A

Arnaud Delobelle

Hi Python List,

I'm trying to use PanedWindow on OS X (10.8.3). I've started with the
effbot docs example (http://effbot.org/tkinterbook/panedwindow.htm),
namely:

----------
from Tkinter import *

m = PanedWindow(orient=VERTICAL)
m.pack(fill=BOTH, expand=1)

top = Label(m, text="top pane")
m.add(top)

bottom = Label(m, text="bottom pane")
m.add(bottom)

mainloop()
----------

I can see two panes alright, but no handle to resize them (or 'sash'
as they seem to be called in tkinter). Is there something else that I
should be doing?

TIA,
 
D

draganov93

Hi to all,

I have a similar problem.
I have a PanedWindow with a lot of checkboxes in it and i want to make the checkboxes non-resizable.How can i achieve this?
 

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
473,756
Messages
2,569,540
Members
45,025
Latest member
KetoRushACVFitness

Latest Threads

Top