Tkinter Label Widgets ใช้เพื่อสร้างป้ายกำกับในหน้าต่าง เราสามารถจัดรูปแบบวิดเจ็ตโดยใช้แพ็คเกจ tkinter.ttk ในการปรับขนาดแบบอักษร ตระกูลแบบอักษร และรูปแบบแบบอักษรของวิดเจ็ตป้ายกำกับ เราสามารถใช้คุณสมบัติในตัวของ แบบอักษร ('แบบอักษรตระกูลแบบอักษร' ขนาดแบบอักษร) .
ตัวอย่าง
ในตัวอย่างนี้ เราจะสร้างปุ่มที่จะปรับเปลี่ยนรูปแบบของข้อความป้ายชื่อ เช่น ขนาดแบบอักษร และรูปแบบแบบอักษร
#Import the required libraries from tkinter import * #Create an instance of tkinter frame win= Tk() #Set the geometry of frame win.geometry("650x250") #Define all the functions def size_1(): text.config(font=('Helvatical bold',20)) def size_2(): text.config(font=('Helvetica bold',40)) #Create a Demo Label to which the changes has to be done text=Label(win, text="Hello World!") text.pack() #Create a frame frame= Frame(win) #Create a label Label(frame, text="Select the Font-Size").pack() #Create Buttons for styling the label button1= Button(frame, text="20", command= size_1) button1.pack(pady=10) button2= Button(frame, text="40", command=size_2) button2.pack(pady=10) frame.pack() win.mainloop()
ผลลัพธ์
การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างที่มีป้ายกำกับข้อความ ปุ่มต่างๆ สามารถใช้เปลี่ยนขนาดตัวอักษรของป้ายกำกับข้อความได้
ตอนนี้ ให้เลือกเปลี่ยนขนาดฟอนต์ของวิดเจ็ต Text Label