我正在尝试使用Tkinter在python应用程序中实现一个组合框。 主要目的是显示连接到计算机的COM设备(已通过Arduino和micro:bit测试)。 一些笔记本电脑也会显示很多COM端口。我还使用了一个列表框进行调试-在这部分看起来还不错。
Tkinter Combobox and ListBox example
我的代码:(抱歉,它有点大,因为我在PAGE上制作过。
import serial.tools.list_ports
ports = serial.tools.list_ports.comports()
try:
import Tkinter as tk
except ImportError:
import tkinter as tk
try:
import ttk
py3 = False
except ImportError:
import tkinter.ttk as ttk
py3 = True
class Toplevel1:
def __init__(self, top=None):
top.geometry("600x247+274+330")
top.title("Teste COM")
top.configure(background="#d9d9d9")
self.Btn_COM = tk.Button(top)
self.Btn_COM.place(x=70, y=30, height=24, width=47)
self.Btn_COM.configure(command=self.check_com)
self.Btn_COM.configure(text='''COM''')
self.Btn_COM.configure(width=47)
self.TCombobox1 = ttk.Combobox(top)
self.TCombobox1.place(x=140, y=35, height=21, width=143)
self.Listbox1 = tk.Listbox(top)
self.Listbox1.place(x=415, y=20, height=137, width=119)
self.Listbox1.configure(background="white")
self.Listbox1.configure(width=119)
def check_com(self):
# Clean list box before send a new command
self.Listbox1.delete(0,'end')
for port, desc, hwid in sorted(ports):
print (port)
self.TCombobox1['values']=[port]
self.Listbox1.insert("end", port)
if __name__ == '__main__':
global val, w, root
root = tk.Tk()
top = Toplevel1 (root)
root.mainloop()
感谢任何帮助 我正在使用Python 3.7,但我也在2.7中进行了测试。
谢谢!
答案 0 :(得分:1)
您的组合框仅显示一个值,因为您在循环中的每个端口上都覆盖了它的值,从而使它仅是一个[port]
。相反,您应该将其设置为不在循环中列出所有端口,如下所示:
def check_com(self):
# Clean list box before send a new command
ports = [1,2,3] # created example ports for testing
self.Listbox1.delete(0,'end')
self.TCombobox1['values'] = ports
for port in sorted(ports):
print(port)
self.Listbox1.insert("end", port)
答案 1 :(得分:0)
基于Filip的回答,我尝试了第二次测试,从port创建一个列表,并在每次插入后追加。
我错误地放置了self.TCombobox1['values']=(lst)
而不是self.TCombobox1['values']=[lst]
。因此,将[lst]更改为(lst)。 (括号x刹车)
我不知道为什么现在变得与众不同,但它奏效了。
def check_com(self):
# Clean list box before send a new command
self.Listbox1.delete(0,'end')
lst = []
for port, desc, hwid in sorted(ports):
lst.append(port)
# if I use lst.append[port will not work
print (lst)
self.TCombobox1['values']=(lst)
self.Listbox1.insert("end", port)