扫码一下
查看教程更方便
此几何管理器通过将控件放置在父控件中的特定位置来组织控件。
widget.place( place_options )
以下是可能的选项列表
通过在不同按钮上移动光标来尝试以下示例 -
from Tkinter import *
import tkMessageBox
import Tkinter
top = Tkinter.Tk()
def helloCallBack():
tkMessageBox.showinfo( "Hello Python", "Hello World")
B = Tkinter.Button(top, text ="Hello", command = helloCallBack)
B.pack()
B.place(bordermode=OUTSIDE, height=100, width=100)
top.mainloop()