Dipesh Samrāwat

Results 72 comments of Dipesh Samrāwat

It's appreciable. Do it at your level. Tom may look for it when he come back. It's quite clearer that most programmers really want to use updated Tkinter. It's an...

It's true that Canvas does not scale and even does not have appearance mode in `customtkinter`. Why are there two `__init__` methods in your `Display` class? Could you please provide...

Either use `CTkLabel` or set `hover=False` to `CTkButton` constructor.

Why are you creating Two instances of `CTk`? Use `CTkToplevel` if you want multiple windows. By the way, it's a bug needs to be fixed causes looping contradictions in `customtkinter`....

**The case you just described. You should still use `CTkToplevel`, all the functionalities will be same and you can pass your `window` object within it.** In your very “first example:...

It is the standard appearance of a Radio Button 🔘 (Historically) that there should be a container (either circular or rectangular) around the point regardless of selection. Still if your...

The Excessive Tkinter documention can be fount at: https://anzeljg.github.io/rin2/book2/2405/docs/tkinter/

It's a recommended feature must be built-in to `customtkinter`. @TomSchimansky should look into this matter. For instance, try to use `pystray` library. You can install it using `pip` as `pip...

Use `place` geometry manager Here is your sample solution: ``` Python import customtkinter as CTK from tkinter import Tk class Dashboard(Tk): def __init__(self): super().__init__() self.grid_columnconfigure(0,weight=0) self.grid_rowconfigure((0,1),weight=1) self.frame = CTK.CTkFrame(self, width=100,...

It's a known bug. For instant fix, you can put the ScrollableFrame in a Frame and then can destroy that Frame. Regards.