สมมติว่าแอปพลิเคชัน Tkinter มีวิดเจ็ตอยู่ในหน้าต่างโดยใช้ Grid Geometry Manager เพื่อเปลี่ยนคุณสมบัติของวิดเจ็ต Tkinter เราสามารถใช้ configure(**options) กระบวนการ. ขณะแสดงวิดเจ็ตในหน้าต่าง เราต้องกำหนดคอนสตรัคเตอร์ให้กับตัวแปรที่อนุญาตให้เข้าถึงเพื่อเปลี่ยนคุณสมบัติของวิดเจ็ตได้ทั่วโลก
ตัวอย่าง
# Import the required libraries from tkinter import * # Create an instance of tkinter frame or window win=Tk() # Set the size of the window win.geometry("700x350") # Add a Label widget and assign it to a new variable label=Label(win, text="This is Houstan Control. " "We've detected a new Mission", background="skyblue",font=('Aerial 11')) label.grid(row=0, column=2) win.mainloop()
ผลลัพธ์
การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างที่มีวิดเจ็ตป้ายกำกับที่จัดชิดซ้ายสุดของหน้าต่าง