เริ่มแรก Tkinter จะแสดงหน้าต่างที่มีวิดเจ็ตและส่วนประกอบทั้งหมด เมื่อเราดูที่แถบเมนู Tkinter จะแสดงไอคอนเริ่มต้น "ใบไม้" สำหรับทุกแอปพลิเคชัน Tkinter ในการเปลี่ยนไอคอนเริ่มต้นของหน้าต่าง Tkinter เราสามารถใช้ iconbitmap("icon location") กระบวนการ. ใช้ตำแหน่งของไฟล์ไอคอนและแสดงหน้าต่างที่มีไอคอนเฉพาะ
ตัวอย่าง
ในสคริปต์ python นี้ เราได้สร้างไอคอนและใช้สำหรับหน้าต่างผลลัพธ์
#Import tkinter library from tkinter import * #Create an instance of tkinter frame or window win= Tk() #Set the geometry of tkinter frame win.geometry("750x250") #Change the icon of window taskbar win.iconbitmap("favicon.ico") #Create a Label Label(win, text="Transparent Icon Window", font=('Lucida 15')).pack() win.mainloop()
ผลลัพธ์
การเรียกใช้โค้ดด้านบนจะแสดงหน้าต่างที่มีไอคอนแบบกำหนดเองบนแถบเมนู