ok, we must redefine each canvas scroll individually ... but what a ()
strange language... !!
--
http://mail.python.org/mailman/listinfo/python-list
On 24 Mar 2005 03:24:34 -0800, Marion <[EMAIL PROTECTED]> wrote:
Next mystery :
a picture drawn in the canvas c1 is scrollable.
a picture-containing canvas "grided" in the canvas c1 is not.
so why ???
Marion
---
[snip]
#---
Next mystery :
a picture drawn in the canvas c1 is scrollable.
a picture-containing canvas "grided" in the canvas c1 is not.
so why ???
Marion
---
from tkinter import *
from PIL import *
class Main:
def __init__(self):
## Main window
Thanks a lot, Eric Brunel.
Harlin, if it's still actual (don't think so, but whoever...) here is
a simple code that works.
---
from Tkinter import *
## Main window
root = Tk()
root.grid_rowconfigure(0, weight=1)
root.grid_rowconfigure(1, weight=1)
root.grid_colu
On 3 Mar 2005 02:38:59 -0800, Harlin Seritt <[EMAIL PROTECTED]> wrote:
Pardon a question I should already know the answer to, but what are the
*args in the:
def xscrollboth(*args):
c1.xview(*args)
c2.xview(*args)
Thanks,
Harlin
If your question is about the syntax, it's just the way of passin
Pardon a question I should already know the answer to, but what are the
*args in the:
def xscrollboth(*args):
c1.xview(*args)
c2.xview(*args)
Thanks,
Harlin
--
http://mail.python.org/mailman/listinfo/python-list
On 3 Mar 2005 01:06:48 -0800, Marion <[EMAIL PROTECTED]> wrote:
Hello.
I am using Tkinter and Pmw.
I would like to build 2 canvases/frames that are scrollable together
horizontally, and independently vertically (so, the vertical
scrollbars should not be moved by the horizontal one).
So I built a Pm
Hello.
I am using Tkinter and Pmw.
I would like to build 2 canvases/frames that are scrollable together
horizontally, and independently vertically (so, the vertical
scrollbars should not be moved by the horizontal one).
So I built a Pmw.ScrolledFrame() containing the 2 canvases,
horizontally scro