CustomTkinter/test/manual_integration_tests/test_configure_dimensions.py
2022-05-24 01:00:58 +02:00

37 lines
1.1 KiB
Python

import customtkinter
import random
app = customtkinter.CTk()
app.geometry("400x400")
def button_callback():
button_1.configure(width=random.randint(30, 200), height=random.randint(30, 60))
frame_1.configure(width=random.randint(30, 200), height=random.randint(30, 200))
label_1.configure(width=random.randint(30, 200), height=random.randint(30, 40))
entry_1.configure(width=random.randint(30, 200), height=random.randint(30, 40))
progressbar_1.configure(width=random.randint(30, 200), height=random.randint(10, 16))
slider_1.configure(width=random.randint(30, 200), height=random.randint(14, 20))
button_1 = customtkinter.CTkButton(app, text="button_1", command=button_callback)
button_1.pack(pady=10)
frame_1 = customtkinter.CTkFrame(app)
frame_1.pack(pady=10)
label_1 = customtkinter.CTkLabel(app, fg_color="green")
label_1.pack(pady=10)
entry_1 = customtkinter.CTkEntry(app, placeholder_text="placeholder")
entry_1.pack(pady=10)
progressbar_1 = customtkinter.CTkProgressBar(app)
progressbar_1.pack(pady=10)
slider_1 = customtkinter.CTkSlider(app)
slider_1.pack(pady=10)
app.mainloop()