Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

วิธีการตั้งค่าคุณสมบัติปุ่มปักหมุดอย่างถูกต้อง?


ปุ่ม Tkinter สามารถกำหนดค่าได้ผ่านแอตทริบิวต์และคุณสมบัติต่างๆ ที่มีใน Tkinter เราสามารถเพิ่ม เหนียว คุณสมบัติทำให้มีความเหนียวเมื่อเทียบกับหน้าต่างที่มันอาศัยอยู่ คุณสมบัติ Sticky ช่วยให้วิดเจ็ตสามารถกำหนดตำแหน่งสัมพัทธ์ในหน้าต่างได้ ในการทำให้ปุ่มติดหนึบ เราต้องเลือกทิศทางหรือตำแหน่ง เช่น N, E, S, W, NE, NW, SE, SW และศูนย์

ตัวอย่าง

#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()

ผลลัพธ์

โค้ดด้านบนจะแสดงหน้าต่างที่มีปุ่มติดหนึบ

วิธีการตั้งค่าคุณสมบัติปุ่มปักหมุดอย่างถูกต้อง?