CustomTkinter/test/manual_integration_tests/test_ttk_frames.py

56 lines
2.0 KiB
Python
Raw Normal View History

2022-04-09 20:37:07 +03:00
import tkinter
import tkinter.ttk as ttk
import customtkinter
2022-04-11 00:10:40 +03:00
customtkinter.set_appearance_mode("light")
2022-04-09 20:37:07 +03:00
root_tk = customtkinter.CTk()
root_tk.geometry("1400x480")
root_tk.title("CustomTkinter TTk Compatibility Test")
root_tk.grid_rowconfigure(0, weight=1)
2022-04-10 21:52:00 +03:00
root_tk.grid_columnconfigure((0, 1, 2, 3, 5, 6), weight=1)
2022-04-09 20:37:07 +03:00
button_0 = customtkinter.CTkButton(root_tk)
button_0.grid(padx=20, pady=20, row=0, column=0)
frame_1 = tkinter.Frame(master=root_tk)
frame_1.grid(padx=20, pady=20, row=0, column=1, sticky="nsew")
button_1 = customtkinter.CTkButton(frame_1, text="tkinter.Frame")
button_1.pack(pady=20, padx=20)
frame_2 = tkinter.LabelFrame(master=root_tk, text="Tkinter LabelFrame")
frame_2.grid(padx=20, pady=20, row=0, column=2, sticky="nsew")
button_2 = customtkinter.CTkButton(frame_2, text="tkinter.LabelFrame")
button_2.pack(pady=20, padx=20)
2022-04-10 21:52:00 +03:00
frame_3 = customtkinter.CTkFrame(master=root_tk)
2022-04-09 20:37:07 +03:00
frame_3.grid(padx=20, pady=20, row=0, column=3, sticky="nsew")
2022-04-11 00:10:40 +03:00
label_3 = customtkinter.CTkLabel(master=frame_3, text="CTkFrame Label", fg_color=("gray95", "gray15"))
2022-04-10 21:52:00 +03:00
label_3.grid(row=0, column=0, columnspan=1, padx=5, pady=5, sticky="ew")
button_3 = customtkinter.CTkButton(frame_3, text="CTkFrame")
button_3.grid(row=1, column=0, padx=20)
frame_3.grid_rowconfigure(1, weight=1)
frame_3.grid_columnconfigure((0, ), weight=1)
frame_4 = ttk.Frame(master=root_tk)
2022-04-09 20:37:07 +03:00
frame_4.grid(padx=20, pady=20, row=0, column=4, sticky="nsew")
2022-04-10 21:52:00 +03:00
button_4 = customtkinter.CTkButton(frame_4, text="ttk.Frame")
2022-04-09 20:37:07 +03:00
button_4.pack(pady=20, padx=20)
2022-04-10 21:52:00 +03:00
frame_5 = ttk.LabelFrame(master=root_tk, text="TTk LabelFrame")
2022-04-09 20:37:07 +03:00
frame_5.grid(padx=20, pady=20, row=0, column=5, sticky="nsew")
2022-04-10 21:52:00 +03:00
button_5 = customtkinter.CTkButton(frame_5)
2022-04-09 20:37:07 +03:00
button_5.pack(pady=20, padx=20)
2022-04-10 21:52:00 +03:00
frame_6 = ttk.Notebook(master=root_tk)
frame_6.grid(padx=20, pady=20, row=0, column=6, sticky="nsew")
button_6 = customtkinter.CTkButton(frame_6, text="ttk.Notebook")
button_6.pack(pady=20, padx=20)
2022-04-09 20:37:07 +03:00
ttk_style = ttk.Style()
ttk_style.configure(frame_3.winfo_class(), background='red')
root_tk.mainloop()