Python_3_und_tkinter/example_004.py

12 lines
212 B
Python
Raw Normal View History

2019-08-08 08:15:16 +02:00
# example_004.py
from tkinter import Tk, Image
def main():
root = Tk()
icon = Image('photo', file='icon.png')
root.wm_iconphoto(True, icon)
root.mainloop()
if __name__ == '__main__':
main()