Python tkinter Combobox
问题 I want to fill my entries when I click in a name of my Combobox without buttons like 'check' to show the values. How can i do that? import tkinter as tk from tkinter import ttk import csv root = tk.Tk() cb = ttk.Combobox(root,state='readonly') labName = ttk.Label(root,text='Names: ') labTel = ttk.Label(root,text='TelNum:') labCity = ttk.Label(root,text='City: ') entTel = ttk.Entry(root,state='readonly') entCity = ttk.Entry(root,state='readonly') with open('file.csv','r',newline='') as file: