added methods to CTkTextbox

This commit is contained in:
Tom Schimansky
2022-07-12 21:52:52 +02:00
parent 92de2c4183
commit acaeceb96d
5 changed files with 44 additions and 24 deletions

View File

@ -28,6 +28,7 @@ progressbar_1.pack(pady=12, padx=10)
button_1 = customtkinter.CTkButton(master=frame_1, command=button_callback)
button_1.pack(pady=12, padx=10)
button_1.configure(state='disabled')
slider_1 = customtkinter.CTkSlider(master=frame_1, command=slider_callback, from_=0, to=1)
slider_1.pack(pady=12, padx=10)