CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Scrollable Frame after bind does not scroll

Open eyedia opened this issue 1 year ago • 0 comments
trafficstars

Just place the self.bind("... in the scrollable_frame_example.py in ScrollableLabelButtonFrame class, in init() and notice that it does not scroll anymore!

def __init__(self, master, command=None, **kwargs):
        super().__init__(master, **kwargs)
        self.grid_columnconfigure(0, weight=1)
        ...
        self.bind("<Configure>", self.resize_window)
        ...

...
...

def resize_window(self, event):
        print(event)

I researched/google for a couple of days, but could not find any solution. Thanks a lot!

eyedia avatar Jul 29 '24 20:07 eyedia