CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Request: Scrollable Frame

Open f1refa11 opened this issue 2 years ago • 2 comments

f1refa11 avatar Nov 15 '22 07:11 f1refa11

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.

Evolution0 avatar Nov 15 '22 16:11 Evolution0

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.

theodubus avatar Nov 16 '22 23:11 theodubus

CTkScrollableFrame is now implemented with version 5.1.0.

TomSchimansky avatar Feb 06 '23 11:02 TomSchimansky