如何将整个窗口移动到屏幕上的某个位置(Tkinter,Python3)

时间:2015-08-03 21:28:42

标签: python python-3.x tkinter

标题说明了一切。如何使用tkinter将整个窗口移动到屏幕上的某个位置。这应该是移动根框架。

2 个答案:

答案 0 :(得分:3)

使用根(或任何Toplevel)窗口的geometry方法。例如:

import tkinter as tk
root = tk.Tk()
root.geometry("+200+400") # places the window at 200,400 on the screen

答案 1 :(得分:3)

使用此:

from tkinter import Tk

main=Tk()
main.geometry('+100+200')
main.mainloop()

或使用功能进行操作:

def change_position(root_variable,x,y):
    root_variable.geometry('+{}+{}'format(x,y))

并使用:change_position(main,500,400)