WxPython - 按钮&gt; <文本输入窗口>新面板中的输出

时间:2011-11-01 14:30:41

标签: wxpython

我想单击一个按钮,显示一个“文本输入框”,然后打印在按钮所在的原始面板中键入的值。

我设法让按钮+框工作,但我无法弄清楚如何在面板中显示值。

我对这一切都很陌生:)

以下是代码:

import wx

class st3000(wx.Frame):

    def __init__(self,parent,id):
        wx.Frame.__init__(self,parent,id,'title', size=(353,270))

        panel=wx.Panel(self)

        button1=wx.Button(panel,label='something',pos=(10,10),size=(-1,60))
        button2=wx.Button(panel,label='anything',        pos=(150,10),size=(-1,60))
        button3=wx.Button(panel,label='nothing',           pos=(250,10),size=(-1,60))

        self.Bind(wx.EVT_BUTTON, self.opcao1, button1)
        self.Bind(wx.EVT_BUTTON, self.opcao2, button2)
        self.Bind(wx.EVT_BUTTON, self.opcao3, button3)

        self.Bind(wx.EVT_CLOSE,  self.closewindow)

    def opcao1(self,event):
        box1=wx.TextEntryDialog(None,'Type...','','...here')
        if box1.ShowModal()==wx.ID_OK:
            answer1=box1.GetValue()

        output=wx.StaticText(panel,-1,answer1,(10,80),(260,-1),wx.ALIGN_CENTER)
        output.SetForegroundColour('red')
        output.SetBackgroundColour('blue')

    def opcao2(self,event):
        self.Close(True)

    def opcao3(self,event):
        self.Close(True)

    def closewindow(self,event):
        self.Destroy()

if __name__=='__main__':
    app=wx.PySimpleApp()
    frame=st3000(parent=None,id=-1)
    frame.Show()
    app.MainLoop()

1 个答案:

答案 0 :(得分:0)

这里的问题是,一旦达到“ init ”方法结束,您的面板对象就会超出范围,因此您无法在“opcao1”方法中使用它。如果您在代码中将“panel”替换为“self.panel”,那么它将按照您的意图运行。 “self”使变量成为类属性。