Python Forum
[Tkinter] How to make split button? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: [Tkinter] How to make split button? (/thread-39109.html)



How to make split button? - teknixstuff - Jan-03-2023

How can I make a split button with Tkinter?
Here's an example of what that looks like:
[Image: SplitButton.png]


RE: How to make split button? - deanhystad - Jan-03-2023

The image doesn't show up for me. I'm guessing you are referring to a spin button, two buttons that can be used to increment or decrement a value. Is that correct? Tkinter has a Spinbox which is a spin button and an entry combined together.


RE: How to make split button? - Yoriz - Jan-03-2023

A ttk.Combobox looks quite like that, probably less the icons.