CustomTkinter
CustomTkinter copied to clipboard
Request: Scrollable Frame
Considering CTkFrame uses Canvas I imagine CTkScrollbar in the dev branch should be applicable to it when its finished as using Canvas seems to be the standard way of implementing scrollable content in a Tk Frame.
You can find here a Tkinter scrollable frame that works just fine (Linux and Windows only). As mentioned in the code, there are a few lines to comment/uncomment depending on the OS on which you are using this code, or you can also add your own OS checker to the code, here is an example :
import platform
if platform.system() == "Windows":
# code for windows
else:
# code for linux
As it is made with Tkinter, it will also work with CustomTkinter.
CTkScrollableFrame is now implemented with version 5.1.0.