最新消息:

标签:tkinter

python tkinter 窗口居中对齐
python

python tkinter 窗口居中对齐

admin 11年前 (2013-04-02) 3189浏览 0评论

tkinter没有现成的窗口居中的功能,只能间接地算出来。 from Tkinter import * def center_window(w=300, h=200):     # get screen width and height     ws...