def __combobox(self):
self.combobox_value = StringVar()
self.combobox_gui = ttk.Combobox(self.parent, textvariable=self.combobox_value, state='readonly')
self.combobox_gui['values'] = ('Selecione...', 'MongoDB', 'Elasticsearch')
self.combobox_gui.current(0)
self.combobox_gui.grid(column=1, row=8, sticky=(W, E))
评论列表
文章目录