Questions tagged [customtkinter]

For questions about the Python library customtkinter which wraps the built-in Tkinter

customtkinter is a library for creating GUI programs which is based on the built-in Tkinter.

It was created by Tom Schimansky and is also available on GitHub.

372 questions
-2
votes
0 answers

I am now working on python software and I have problem I am asking for help if anyone know how to deal with this

UserWarning: CTkLabel Warning: Given image is not CTkImage but . Image can not be scaled on HighDPI displays, use CTkImage instead. warnings.warn(f"{type(self).__name__} Warning: Given image is not CTkImage but…
-2
votes
0 answers

How can I make globe my custom tkinter main window?

How can I describe radius args in the main window? import customtkinter as ctk class main(ctk.CTk): def init(self): super().init(fg_color= "#2ecc71") self.title("") self.geometry("800x600") self.resizable(False, False)…
-2
votes
1 answer

An unwanted window appears when using the customtkinter library and tkinter

https://github.com/alisiraydemir/massattenuationpdf/blob/py/Vize_takip_sistemi.py > You can access the code here. Unwanted window tk After clicking "Müşteri Ekle" and trying to close the Tk small window, this error occurs.
-2
votes
1 answer

Python Youtube Video Downloader using link

I built a Python project using pytube and custom tkinter and whenever I paste a youtube link to be converted into video it gives me my custom made command Download Error here's the entire code: import tkinter import customtkinter from pytube import…
-2
votes
1 answer

I am making a YouTube link to mp4 converter

It has to work,but it gives me this error: File "C:\Users\ХарисВМладенов\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\LocalCache\local-packages\Python311\site-packages\customtkinter\windows\widgets\ctk_button.py", line…
-2
votes
1 answer

How to fix the pause button?

I made a program that allows you to choose any audio to play using vlc module and tkinter. The pause button didn't work. Even using global variable it didn't work. #define "select file" function def select_file(): global filename filetypes =…
Riz
  • 3
  • 3
-2
votes
1 answer

Cant switch windows in tkinter

Every time I click on the buttons I get a error. Could anyone help me by providing a fix or telling me what the issue was because I cant see the issue. Whenever the button is clicked it is supposed to open a new page and the side bar on the left…
ernanto
  • 3
  • 1
-2
votes
1 answer

tkinter classes problem: __init__() got an unexpected keyword argument 'master'

I am using customtkinter which is the exact same as tkinter but prettier. how can I set the master of a tkinter frame class when the class inherits from the frame class in tkinter ?? my problem is because i want frame_right to be the master of…
1 2 3
24
25