Python中tkinter中控件的使用(6.Listbox列表框(单击多选))

Posted 飞飞阿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python中tkinter中控件的使用(6.Listbox列表框(单击多选))相关的知识,希望对你有一定的参考价值。


import tkinter

win = tkinter.Tk()
win.title("Listbox列表框(单击多选)")
win.geometry("800x600+600+100")
#MULTIPLE 支持不用按shift和ctrl可以多选
lb=tkinter.Listbox(win,selectmode=tkinter.MULTIPLE)
lb.pack()
for item in["good","nice","handsome","very good","verynice"]:
lb.insert(tkinter.END,item)

win.mainloop()

以上是关于Python中tkinter中控件的使用(6.Listbox列表框(单击多选))的主要内容,如果未能解决你的问题,请参考以下文章

python之列表

安卓RecyclerView详解

Android Studio 基础控件飘红 处理办法

Android Studio 基础控件飘红 处理办法

Android Studio 基础控件飘红 处理办法

GitHub开源控件的使用合集