EN20M
EN20M
I hacked a range slider that is vanilla to the customtkinter in opose to the mentioned package. I did not want to modify the installed package on my mashine so...
@Akascape right as i actually used it i found a bug but fixed it and updated my previous comment. If I find the time I'll fork and arange a pull...
As [this](https://github.com/TomSchimansky/CustomTkinter/wiki/Create-new-widgets-(Spinbox)) wiki page showes how to build a spinbox am I right that the spinbox is not going to be added or is this a workaround for a new...
You mean fist full screen it and than use `geometry()`? Since some parts of my ui will always expand to the size of the window this would result in the...
I know this and I already have bound the attemt to resize to the button button that changes the layout. From the begining on the problem was never to trigger...
I am looking for a way to resize without the need to specify dimensions. I basically want the window as small as possilbe with everything thats on the grid to...
Thank you very mutch for taking the time to look into it. I think at some point there won't be mutch change in my layout anymore and I'll adjust the...
It is possible to do it dynamicly: ```python def get_pady(self, widget): try: padding = sum(widget.grid_info()['pady']) except: padding = widget.grid_info()['pady'] * 2 return padding def manage_window_height(self, parentFrame): self.update_idletasks() # update idletasks...
could you make an example on how this is supposed to work
Ah I see thanks.