Dropdown Menus With TKinter - Python Tkinter GUI Tutorial #18

preview_player
Показать описание
How to use Dropdown Menus With TKinter. In this video I'll show you how to create Dropdown menus with tKinter. In this series I'll show you how to create graphical user interfaces for Python with Tkinter.

✅ Watch The Other Videos In This Python Playlist:

▶️ See More At:

✅ Join My Facebook Group:

✅ Subscribe To My YouTube Channel:

Take $22 off with coupon code: youtube
Рекомендации по теме
Комментарии
Автор

▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My YouTube Channel:
▶️ See More At: ✅ Join My Facebook Group:

Codemycom
Автор

You've literally helped me through learning Tkinter for the past 3 years. You are very helpful and you explain things well! I couldn't have made any Tkinter GUI without you!

samukaze
Автор

I'm working the first time with Tkinter and Python to create a GUI for a project and your tutorials are a great help! Love it!

tillebeling
Автор

You have helped me a lot in my Computer Science project and i am pretty sure i wont forget Tkinter even after this project's done. Thanks a ton :)

thesun
Автор

Excellent set of Tkinter GUI tutorial videos. I am enjoying easy and relaxed form of lessons with a bit of humour. Well done!
Just wondering why so small number of the views. Under rated, for sure.

Ascannio
Автор

Thanks for the lessons
:) I had problems with the * I didn't know about that

tudorcozma
Автор

Another great vid. Thought I'd just leave a comment to help with YT algorithm?

ninjatribble
Автор

you are a great person. I have no doubts as little to little things are solved by your videos. Hatsoff Dear!

shivamconsultancyservices
Автор

I'm not sure how YouTube handles this stuff but I think it's a little ridiculous I need to express that I like each individual video (well deserved on your part and I have been because you deserve it) instead of liking the playlist as sort of a catch all(or like all) for the content you're providing. I find this to be especially true on educational content where it's typically consecutive videos around a very broad topic. You shouldn't lose value because you're an educational channel, assuming you do based on what I know of YouTube. Just my unsolicited 2 cents.

cameronmclaughlin
Автор

out of curiosity, which videos prior to this one in ur playlist talk about (in depth/remotely) about string var. it seems to be quite an interesting concept and would like to better understand it

btw, great videos man. keep it up with ur channel :)

safwankhan
Автор

What a journey this was, I learnt a lot!

artemissrijan
Автор

Thanks for the videos, really great! Just a beginner question: can I limit the selection to just one and add an "OK" button to close the menu once selection finished? Thank you!

mihnearazvan
Автор

You always scare me when you say "What's going on ..." :D

enricogalli
Автор

Is it possible to run a function each time the menu is updated? (Whenever a user selects something from a menu a function is called)

edit: Nevermind figured it out. To achieve this you can simply add the command attribute to the option menu.
When ever the drop down is interacted with it will call the function parsing in the selected value.


dropdown = OptionMenu(root, selected_item, *items_list, command=display_selection)

def
print(selected_item)

whitefang
Автор

how would I assign a value for example Monday as 2 so when you select Monday

dxdon
Автор

In the show() function you're using a variable (clicked) which is defined outside of it. Isn't there a way around this?

Damieru
Автор

Love this video! I used this concept to create a workout app. Is there anyway I can make the selected word from the dropdown menu output something else? So if I click "Monday", it would output a to-do list for Monday

erichudson
Автор

how do you change that little white box thingy next to the dropdown text?

CrownCatX
Автор

Thanks for this super helpful video! I was wondering if there is a way to add a feature where the user can search through the drop down menu options?

musiclover
Автор

@6:08, you added "Saturday". How would I add a new date via an input box and subsequently update the list/optionMenu to show the newest addition?

theinquisitivelayman