MaxNiark

Results 15 comments of MaxNiark

could u try this ? python Vxx? ``` from customtkinter import * class App(CTk): def __init__(self): super().__init__() self.title("TRY TO SEE SOMETHING ") self.geometry(f"{1500}x{180}") app=App() app.mainloop() ``` ![image](https://github.com/TomSchimansky/CustomTkinter/assets/126392328/8ec4a92d-a168-4a3c-9dcb-8a455e432f58)

yeah, i'm using this for something else in my app, i use a canvas widget for matplotlib :)

tabview create a ctkframe when u use .add function. i did try a lot of thing why tabview, and i give up ... now i use segmented button with personnal...

i found dat => accctualy using in my app, and the job is rly rly goood

ahah ok, there is a thing about trigger event this both action don't make the same result, like your button ![image](https://github.com/TomSchimansky/CustomTkinter/assets/126392328/0225fb74-caa2-4ec5-84a9-d424b8fff196)

FROM a post of akascape in this repository ![image](https://github.com/TomSchimansky/CustomTkinter/assets/126392328/5e419000-2bcf-4f15-a069-7dd62060a468) ``` self.all_file={}#personnal variable dict bg_color = self._apply_appearance_mode(customtkinter.ThemeManager.theme["CTkFrame"]["fg_color"]) text_color = self._apply_appearance_mode(customtkinter.ThemeManager.theme["CTkLabel"]["text_color"]) selected_color = "green" treestyle = ttk.Style() treestyle.theme_use('default') treestyle.configure("Treeview", background=bg_color, foreground=text_color, fieldbackground=bg_color,...

Maybe with a copy of option menu widget.py , and change the canvas border ( created by ctk ) hard :)

def on_window_resize(event): # print each time the windows is resize width = event.width height = event.height # print(f"Window resized to {width}x{height}") # SIZE_MAIN=[width,height] # return SIZE_MAIN # Bind the resize...

in children master.master.bind("", self.on_window_resize)

master.master.bind("", self.on_window_resize)