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?
--
https://mail.python.org/mailman/listinfo/python-list
On 21 March 2013 18:42, Christian Gollwitzer wrote:
> Am 21.03.13 15:37, schrieb 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:
>>
>> --
>
Am 21.03.13 15:37, schrieb 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, e
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