tkinter simgesi nasıl değiştirilir?
tkinter simgesi nasıl değiştirilir? Simgeyi (icon) değiştirmek için .ico dosyası olmalıdır. iconbitmap kullanarak değiştirebilir.
Örnek program:
1 2 3 4 5 6 7 |
from tkinter import * tk = Tk() tk.iconbitmap(default='ball.ico') lab = Label(tk, text='Window with transparent icon.') lab.pack() tk.mainloop() |