Ashhad Ahmed

Results 14 comments of Ashhad Ahmed

That's true the configure function in the scrollbar doesn't support the changing of the scroll direction, by default the scroll direction is set to vertical but it can be changed...

try changing your background color to transparent.

try tweaking the border_color if its a button.

### Description: This is caused when you are destroying the window first and then creating another window. something like this: ```py window.destroy() anotherwindow.mainloop() ``` ### Solution: The solution for this...

> Thanks пн, 19 февр. 2024 г., 13:57 Ashhad Ahmed ***@***.***>: > […](#) > Description: This is caused when you are destroying the window first and then creating another window....

What are the values that you have set for: `set_widget_scaling` and `set_window_scaling` ?

You can try this: ```py import customtkinter import tkinter as tk from PIL import ImageTk, Image app = customtkinter.CTk() app.title("How to add images in CTkTextBox #2292") label = tk.Text(app) label.pack()...

If this answers your question, mark this issue as solved 👍🏻

Well you should be seeing mark as an answer right below or above the answer I sent to you.

### Description: This is caused because the window is instantiated to be looped after the initial window has been destroyed. Something like this: ```py window.destroy() anotherwindow.mainloop() ``` ### Solution: To...