Tkinter drop-down list of flags / combo boxes

I am trying to create a post-processing processing application in Python, and I am designing a GUI for this using Tkinter.

I do not know if Tkinter supports a drop-down list consisting of flags from which you can select several boxes. The figure below shows what I'm trying to describe:

enter image description here

Is it possible?

+4
source share
1 answer

This is not what you wanted, but hope this helps.

from Tkinter import *

top = Tk()

mb=  Menubutton ( top, text="CheckComboBox", relief=RAISED )
mb.grid()
mb.menu  =  Menu ( mb, tearoff = 0 )
mb["menu"]  =  mb.menu

Item0 = IntVar()
Item1 = IntVar()
Item2 = IntVar()

mb.menu.add_checkbutton ( label="Item0", variable=Item0)
mb.menu.add_checkbutton ( label="Item1", variable=Item1)
mb.menu.add_checkbutton ( label="Item2", variable=Item2)


'''This part is only for testing
def Item_test():
    if Item0.get() == True:
        print "Item0 True"
    elif Item0.get() == False:
        print "Item0 False"
    else:
        print Item0.get()
    if Item1.get() == True:
        print "Item1 True"
    elif Item1.get() == False:
        print "Item1 False"
    else:
        print Item1.get()
    if Item2.get() == True:
        print "Item2 True"
    elif Item2.get() == False:
        print "Item2 False"
    else:
        print Item2.get()

button1 = Button(top, text="Item True/False Test", command = Item_test)
button1.pack()
''' 

mb.pack()
top.mainloop()
+1
source

Source: https://habr.com/ru/post/1616376/


All Articles