CustomTkinter/examples/simple_example.py

8 lines
157 B
Python
Raw Normal View History

import tkinter as tk
import customtkinter as ctk
2021-03-04 20:27:46 +03:00
root = tk.Tk()
2021-03-05 02:32:17 +03:00
btn = ctk.CTkButton(master=root, text="EXIT", command=root.destroy).pack()
root.mainloop()