2022-03-02 02:53:58 +03:00
|
|
|
import customtkinter
|
|
|
|
|
2022-03-08 01:00:50 +03:00
|
|
|
customtkinter.set_appearance_mode("dark")
|
|
|
|
customtkinter.set_default_color_theme("blue")
|
2022-03-02 02:53:58 +03:00
|
|
|
|
|
|
|
app = customtkinter.CTk()
|
|
|
|
app.geometry("400x300")
|
|
|
|
app.title("CTkDialog Test")
|
|
|
|
|
|
|
|
|
|
|
|
def change_mode():
|
2022-04-20 23:50:57 +03:00
|
|
|
if c1.get() == 0:
|
2022-03-02 02:53:58 +03:00
|
|
|
customtkinter.set_appearance_mode("light")
|
2022-04-20 23:50:57 +03:00
|
|
|
else:
|
2022-03-02 02:53:58 +03:00
|
|
|
customtkinter.set_appearance_mode("dark")
|
|
|
|
|
|
|
|
|
|
|
|
def button_click_event():
|
2022-03-08 01:00:50 +03:00
|
|
|
dialog = customtkinter.CTkInputDialog(master=None, text="Type in a number:", title="Test")
|
2022-03-02 02:53:58 +03:00
|
|
|
print("Number:", dialog.get_input())
|
|
|
|
|
|
|
|
|
|
|
|
button = customtkinter.CTkButton(app, text="Open Dialog", command=button_click_event)
|
2022-05-22 21:26:31 +03:00
|
|
|
button.place(relx=0.5, rely=0.5, anchor=customtkinter.CENTER)
|
2022-03-02 02:53:58 +03:00
|
|
|
c1 = customtkinter.CTkCheckBox(app, text="dark mode", command=change_mode)
|
2022-05-22 21:26:31 +03:00
|
|
|
c1.place(relx=0.5, rely=0.8, anchor=customtkinter.CENTER)
|
2022-03-02 02:53:58 +03:00
|
|
|
|
2022-05-22 21:26:31 +03:00
|
|
|
app.mainloop()
|