How to update values to the listbox under Combobox in ttk Python33

空扰寡人 提交于 2019-12-04 08:44:59

问题


When I create the Combobox, it has no items in the list. Now when I click on the dropdown button a function is called (via the postcommand option), but once in my function I don't know how to set the values in the listbox of the Combobox.

Code something like this:

    #update list upon drop down
    self.cbox = Combobox(self, width = 10, postcommand = self.updtcblist)

    def updtcblist(self):
        list = self.getPortLst()
        self.cbox.getlistbox.set(list) #getlistbox doesn't work

Thanks,

Harvey


回答1:


Answered my own question.

I Finally found an example that helped, and got it to work with the following code:

#update list upon drop down
self.cbox = Combobox(self, width = 10, postcommand = self.updtcblist)

def updtcblist(self):
    list = self.getPortLst()
    self.cbox['values'] = list

This works as desired.



来源:https://stackoverflow.com/questions/18906047/how-to-update-values-to-the-listbox-under-combobox-in-ttk-python33

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!