Skip to main content
1 vote
0 answers
56 views

I seem to be always getting 120 for both height and width, I don't know why it refuses to give me the real value for the width so I can make the maintain the height in a 16:9 ratio # Monitor frame ...
epi's user avatar
  • 11
Best practices
0 votes
3 replies
64 views

I have this script in Tk and it works fine. I wanted to make it dark and add hover options, so I changed it to CTk, but now it's not working. Can someone please help me fix this? I have both scripts ...
Royy's user avatar
  • 149
2 votes
0 answers
112 views

I'm having a little problem with this code! Basically, I'm testing a feature for a piece of software, and the idea was to animate these windows. So far, it's working fine. When the top window expands, ...
DevStrom's user avatar
-2 votes
1 answer
75 views

I have coded a python application for help me manage my works. For do this I need some buttons. I chose to use CustomTkinter because of the visual effect but mostly of the times the icons of the ...
Andrea Buscetto's user avatar
0 votes
1 answer
94 views

In my Tkinter chatbot app, clicking the 'History' menu opens a new window every time. How can I make it so only one history window exists, and if it's already open, bring it to focus instead of ...
Ashaz Akhtar's user avatar
2 votes
1 answer
57 views

I have an issue where my CTkTabview only takes up ~2/3 of the screen vertically. class App(customtkinter.CTk): def __init__(self): super().__init__() self.grid_columnconfigure(0, ...
frenzy's user avatar
  • 23
0 votes
1 answer
75 views

I want a frame that scrolls both ways (horizontally and vertically). However, a normal CTkScrollableFrame only supports either vertical scrolling or horizontal scrolling, and I'm not sure what other ...
Tommy Llewellyn's user avatar
1 vote
1 answer
59 views

My application uses CustomTkinter and reads data on start up: import customtkinter as ctk from CTkMessagebox import CTkMessagebox class App(ctk.CTk): def __init__(self) -> None: super()....
Daniel O'Hara's user avatar
0 votes
0 answers
20 views

So I have this widget class. class TitledWidget(ctk.CTkFrame): def __init__(self, parent, title="", **kwargs): super().__init__(parent, **kwargs) self.title = title ...
Sonia Chartrand's user avatar
3 votes
2 answers
240 views

I'm new to coding/Python started a few weeks ago and am learning by creating a basic app with Customtkinter (for the aesthetic) on Pycharm. The app has 2 Customtkinter windows, a login window (class ...
Suraj Satish 's user avatar
0 votes
0 answers
75 views

This is a simple application I'm making that organizes folder, but that part works fine. I'm make a GUi for it using custom tkinter and cant figure out how to set the favicon, whatever I do just does ...
AlexanderPrasad's user avatar
0 votes
1 answer
61 views

I am not very experienced with coding but I am creating a customtkinter application style script where a user can input a specific type of html that contains diagnostic addresses and various ...
Chickchu's user avatar
0 votes
0 answers
133 views

I'm using CustomTkinter to build a quiz interface. Each question is displayed in a CTkTextbox (lbl), and I want the textbox to automatically adjust its height (Y dimension) depending on the content, ...
Bao Nguyengia's user avatar
0 votes
0 answers
62 views

I'm working on a tkinter/customtkinter app to load data to MySQL. Below are the relevant classes. When I run this code to load a single file, I have no issues. The problem comes when I click self....
Kyle's user avatar
  • 2,545
0 votes
1 answer
88 views

I have a small app using tkinter/customtkinter. When I click a drop down (CTkOptionMenu) it chooses a form to display and all other forms become hidden: def show_selected_form(self, event): ...
Dugan's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
43