In the code-snipet below, the following is printed as output:
1x1+0+0
Question #1: why??? (is this somekind of a "normalized" or "per-unit"
output?)
=======
Question#2: the x=0, y=0 position is ignored when the root and the canvas are
displayed. Why???
========
#==============================
from Tkinter import *
root=Tk()
root.geometry('600x400+0+0') #why???????
print root.winfo_geometry()
canvas=Canvas(root,bg='green')
canvas.pack()
_______________________________________________
Tkinter-discuss mailing list
Tkinter-discuss@python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss