Questions tagged [customtkinter]

If you have any inquiries regarding the customtkinter Python library that enhances the functionality of Tkinter, please feel free to reach out.

Learn how to control multiple buttons using a single function in customizing Tkinter interface

I've been working on creating a grid of buttons that change their parameters or toggle when pressed. Unfortunately, I have been struggling to differentiate each button in order to modify their properties using self.button.config(). I've also been trying to ...

Python - My CTkRadioButtons now have the ability to select multiple options at once

I am currently facing an issue with the three radio buttons. They all allow multiple selections at once. How can I prevent this behavior and make it so that when one button is pressed, the selection switches from the previously selected one? pen_size ...

Retrieving information from various tkinter frames in a data object

My Current Project At the moment, I am developing a graph-viewing application. The user experience starts with opening the app and clicking on 'Import' in the sidebar to choose a CSV file. Once selected, the user can view the graph embedded with ...