Wxpython回调

时间:2013-03-25 20:14:10

标签: wxpython

我的框架中有3个控件 -

  1. 一个列表框,其中包含employee表中的员工姓名列表。
  2. 接受新员工姓名的文本框
  3. 点击命令按钮将在员工表中插入新名称。
  4. 要求:

    在插入新行后按下提交按钮后,应使用新名称自动刷新列表框。

    如何完成此任务?

    我已成功创建控件并绑定on click事件并插入一行。但无法刷新列表框。

    提前感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

您应该使用ListBox的SetItems方法:

import wx

########################################################################
class MyPanel(wx.Panel):
    """"""

    #----------------------------------------------------------------------
    def __init__(self, parent):
        """Constructor"""
        wx.Panel.__init__(self, parent)

        self.choices = ["George Lucas"]
        self.lbox = wx.ListBox(self, choices=self.choices)
        self.new_emp = wx.TextCtrl(self)
        addBtn = wx.Button(self, label="Add Employee")
        addBtn.Bind(wx.EVT_BUTTON, self.addEmployee)

        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.lbox, 0, wx.ALL|wx.EXPAND, 5)
        sizer.Add(self.new_emp, 0, wx.ALL|wx.EXPAND, 5)
        sizer.Add(addBtn, 0, wx.ALL, 5)
        self.SetSizer(sizer)

    #----------------------------------------------------------------------
    def addEmployee(self, event):
        """"""
        emp = self.new_emp.GetValue()
        self.choices.append(emp)
        self.lbox.SetItems(self.choices)
        self.new_emp.SetValue("")

########################################################################
class MainFrame(wx.Frame):
    """"""

    #----------------------------------------------------------------------
    def __init__(self):
        """Constructor"""
        wx.Frame.__init__(self, None, title="Employee")
        panel = MyPanel(self)
        self.Show()

#----------------------------------------------------------------------
if __name__ == "__main__":
    app = wx.App(False)
    frame = MainFrame()
    app.MainLoop()