如何正确设置粘性按钮属性?
Tkinter 按钮可以通过 Tkinter 中不同的可用属性进行配置。我们可以添加一个粘性属性,使其相对于它所在的窗口具有粘性。sticky 属性允许小部件设置窗口中的相对位置。要使按钮具有粘性,我们必须选择方向或位置,例如 N、E、S、W、NE、NW、SE、SW 和 0。
示例
#Import the tkinter library from tkinter import * from tkinter import ttk #Create an instance of tkiner frame win= Tk() #Define the geometry of the function win.geometry("750x250") #Create a button to close the window btn1 = ttk.Button(win, text ="I am in Column 3") btn1.grid(column=3) btn2=ttk.Button(win, text="I am stuck to South West") btn2.grid(sticky=SW) btn3= ttk.Button(win, text="I am stuck to North west") btn3.grid(sticky=N) win.mainloop()
输出
以上代码将显示一个包含一些粘性按钮的窗口。
广告