▶ Watch CustomTkinter Playlist ✅ FREE Tkinter Widget Book bit.ly/45iO4OP bit.ly/3K4qlZC ▶ See More At: ✅ Subscribe To My KZbin Channel: Tkinter.com bit.ly/3Pk1By4 ▶ MASSIVE TKINTER.COM DISCOUNT ✅ Join My Facebook Group: 30% off with coupon code: youtube bit.ly/2GFmOBz ▶ Get The Code For This Video bit.ly/3dCzz2K
@sovereignlivingsoul10 ай бұрын
i'm going to binge watch your playlist, you have great presentation, i suggest not apologizing as often, i think people enjoy your designs, regardless of their ocular enhancements
@TkinterPython10 ай бұрын
🙂
@yarbio5 ай бұрын
i really love your videos, some can be hard to understand but your presentation and the way you show it all is very simple and i am LOVING it. thank you.
@КотБурбон-г2ы2 ай бұрын
thanks for the video, it was helpful!!
@figennurulusal2587 Жыл бұрын
Is there a "wraplength" or such for customtkinter? the size of text on my buttons messes up the size of the button even though I do put width and height at a certain number.
@bluewhale6566 ай бұрын
I have a quick question about tkinter buttons: If I use a png image for the button, will the button only activate if I click on the opaque pixels or will it also activate if I click on transparent pixels?
@thangabalur86128 ай бұрын
Can you implement drag and drop buttons
@evaneoskowar88598 ай бұрын
is there a technical way to add button with like multicolor/rainbow borders like website does?
@Codemycom8 ай бұрын
not unless you use an image
@devabdul Жыл бұрын
Sir i have question, how i create one file with bg, font size etc designing part for all my buttons?
@BillyHau Жыл бұрын
is there a way to bind a button released command?
@TkinterPython Жыл бұрын
Sure
@Chuchundrik-The-First Жыл бұрын
Thank you, sir!
@TkinterPython Жыл бұрын
Welcome!
@joeb304510 ай бұрын
Hi, is it possible to pass an argument to the function, that is called with command?
@TkinterPython10 ай бұрын
yes, using lambdas. command=lambda: whatever(thing)
@YinjinChen10 ай бұрын
Sir, how to make button recognize different kinds of clicking? Like responding in different ways when users rightclick and leftclick.
@TkinterPython10 ай бұрын
Use binding
@nikhilnarsipalli9694 Жыл бұрын
I have a question, how can we enable button border only when hovered upon
@TkinterPython Жыл бұрын
Use the hover_color attribute
@Heroes_Academy1 Жыл бұрын
I have a question is there a spin box in Ctk
@TkinterPython Жыл бұрын
I don't think so
@SuperLimeWorld11 ай бұрын
When I click a button it runs the "command" twice, Eg. if you have a function that prints ("h") and run it with the button, it will print("h") twice.
@TkinterPython11 ай бұрын
You did something different from the video then
@reo226509 ай бұрын
for some reason when I use root.geometry("650, 300") It doesnt change the size or anything
@TkinterPython9 ай бұрын
Because that's not how you do it. root.geometry('650x300') not ('650, 300')
@AhmedAl-Yousofi Жыл бұрын
How to keep the state of the button to disabled until the entry ( input ) is filled by some text, then change it to normal ?
@TkinterPython Жыл бұрын
use a binding on the entry box to run a function that changes the button state
@mouazalbitar61749 ай бұрын
My mouse cursor does not change when I click on the button. Please help
@TkinterPython9 ай бұрын
help with what? Is that a problem?
@jasmine2258 Жыл бұрын
can we disabled the background of the button??
@TkinterPython Жыл бұрын
Sorry, don't know what you mean
@DRKLRD-kv4cm9 ай бұрын
@@TkinterPython i think he probably, just like me, wants to know whether it's possible to make the background of the button TRULY TRANSPARENT. Because, as long as you use a fixed colour for the background frame/window, it works fine, but when you put an image on the background, the 4 corners of the button appear, white, and are not transparent at all. I would like to know that as well, if you happen to know
@Koinonia-kt5mb11 ай бұрын
Why does ctk don't have messagebox?
@TkinterPython11 ай бұрын
Because the guy who created it didn't put one in.
@Koinonia-kt5mb11 ай бұрын
@@TkinterPython so is there any other opinion other than messagebox?
@TkinterPython11 ай бұрын
@@Koinonia-kt5mbSure, depending on what you mean by messagebox and what you need it to do. You can always just create a new tkinter toplevel window.
@larslover65599 ай бұрын
@@Koinonia-kt5mb You can still use the message box in regular tkinter.. if you have many windows put in parent=(your present window). so that the messagebox opens at the right window
@ssukhdipmanku408 Жыл бұрын
Excellent way of explaining
@TkinterPython Жыл бұрын
Thanks!
@MysteryMindset636 Жыл бұрын
please upload more vedios on this topic custom tkinter
@TkinterPython Жыл бұрын
There's an entire playlist, you're on video 2
@JarppaGuru13 күн бұрын
4:20 they are same ubuntu is just debian with theme xD
@rgmtb Жыл бұрын
These videos are terrific! I'm new to tk everything (haha). There seems to be, Tk Ttk Ttkbootstrap And now custom tkinter What should I focus on? Custom tkinter seems very flexible so I thought I might as well just focus on the latest and greatest. Your thoughts?
@TkinterPython Жыл бұрын
Doesn't really matter... start with whatever grabs your fancy
@lucachristian2305 Жыл бұрын
how to import custom fonts ?
@TkinterPython Жыл бұрын
I think there's a video on the channel about that
@Gengar76568 ай бұрын
Hey great video! Is there a difference between CTkButton und customtkinter.CTkButton ? I have always been using the first syntax and thaught its the same
@TkinterPython8 ай бұрын
it's the same, it just depends on how you imported it, which syntax you use.