You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
311 B
Python
7 lines
311 B
Python
from customtkinter import *
|
|
from CTkTable import *
|
|
from PIL import Image
|
|
|
|
def create(self):
|
|
self.buttonTest = CTkButton(master=self.main_container, text="Dashboard", fg_color=contrastColor, font=("Arial Bold", 14), hover_color=mainColor, anchor="center")
|
|
self.buttonTest.pack(padx=5, pady=5,expand=True) |