如何选择wxpython组合框并更改值?

时间:2017-07-08 03:17:20

标签: python wxpython

# -*- coding: utf-8 -*-
import wx


class Main(wx.Frame):
    def __init__(self):
        wx.Frame.__init__(self, None, size=(430,550))
        self.mainPanel = wx.Panel(self, size=(0,500))

        self.data1 = [1,2,3]
        self.data2 = ['google','amazon']

        self.listCtrl = wx.ListCtrl(self.mainPanel, size=(0,0), style=wx.LC_REPORT|wx.BORDER_SUNKEN)
        self.listCtrl.InsertColumn(0, 'ONE', format=wx.LIST_FORMAT_CENTRE, width=wx.LIST_AUTOSIZE_USEHEADER)
        self.listCtrl.InsertColumn(1, 'TWO', format=wx.LIST_FORMAT_CENTRE, width=wx.LIST_AUTOSIZE)
        self.listCtrl.InsertColumn(2, 'THREE', format=wx.LIST_FORMAT_CENTRE, width=wx.LIST_AUTOSIZE)

        self.ComboBoxs = wx.ComboBox(self.mainPanel, choices=self.data2, style=wx.CB_READONLY)
        self.ComboBoxs.Bind(wx.EVT_COMBOBOX, self.ComboSelect, self.ComboBoxs)

        self.textLabel = wx.StaticText(self.mainPanel)
        self.autoRefreshCount = 0

        self.BoxSizer = wx.BoxSizer(wx.VERTICAL)
        self.BoxSizer.Add(self.ComboBoxs, 0, wx.ALL, 5)
        self.BoxSizer.Add(self.listCtrl, 1, wx.EXPAND | wx.ALL, 5)
        self.BoxSizer.Add(self.textLabel, 0, wx.EXPAND | wx.ALL, 5)
        self.mainPanel.SetSizer(self.BoxSizer)

        self.timer = wx.Timer(self)
        self.Bind(wx.EVT_TIMER, self.autoRefresh, self.timer)
        self.timer.Start(5000)

        self.ComboSelect(self)

    def ComboSelect(self, event):
        self.listCtrl.Append(self.data1)

    def autoRefresh(self, evnet):
        if self.ComboBoxs.GetStringSelection() in self.data2:
            self.ComboSelect(self)
            self.textLabel.SetLabel('count : ' + str(self.autoRefreshCount))
            self.autoRefreshCount += 1
        else:
            self.textLabel.SetLabel('count : ' + str(0))
            self.autoRefreshCount = 0

if __name__ == '__main__':
    app = wx.App()
    frame = Main()
    frame.Show(True)
    app.MainLoop()

我在组合框选择值后创建了一个自动导入。

如果问题更改了组合框选择,则必须初始化更改后的值self.textLabel.SetLabel ('count:' + str (self.autoRefreshCount))

我已经尝试了很多,但我不知道该怎么做。

if self.ComboBoxs.GetStringSelection () in self.data2:条件表达式中似乎存在问题。

1 个答案:

答案 0 :(得分:1)

目前尚不清楚您要在此代码中尝试实现的目标 您的测试if self.ComboBoxs.GetStringSelection() in self.data2:始终为True,因为self.ComboBoxs是只读的,因此无法更改,因此无论选择什么,它都将始终位于self.data2
尝试以下替换,看看它是否让你更接近你想要的。

    def ComboSelect(self, event):
#        self.listCtrl.Append(self.data1)
        self.autoRefreshCount = 0

    def autoRefresh(self, evnet):
#        if self.ComboBoxs.GetStringSelection() in self.data2:
#            self.ComboSelect(self)
        self.listCtrl.Append(self.data1)
        self.textLabel.SetLabel('count : ' + str(self.autoRefreshCount))
        self.autoRefreshCount += 1
#        else:
#            self.textLabel.SetLabel('count : ' + str(0))
#            self.autoRefreshCount = 0

编辑:
根据您的评论,我怀疑你想要的是EVT_TEXT当组合框中的文字发生变化时,此事件会触发。
把它绑在一起,看看这是不是你想要的。

self.ComboBoxs.Bind(wx.EVT_TEXT, self.ComboChange, self.ComboBoxs)
相关问题