我正在尝试制作 Python GUI。一个简单的测试,看看我是否可以在文本框中获取用户的输入,然后让他们单击“创建”按钮并将其写入文件。
这是我当前的代码:
import wx
class gui(wx.Frame):
def __init__(self,parent,id):
wx.Frame.__init__(self,parent,id,'YML Generator v1.0', size=(500,800))
panel=wx.Panel(self)
wx.StaticText(panel, -1, "Name", (10,10))
global ItemName
boxx = wx.TextCtrl(panel, -1, pos = (90, 10), size = (100, -1))
ItemName=boxx.GetValue()
button=wx.Button(panel,label="Create!",pos=(100,100),size=(100,40))
self.Bind(wx.EVT_BUTTON, self.writeStuff, button)
def writeStuff(self, e):
yml = open("output.yml", "wb")
yml.write((ItemName) + " is what you entered.")
yml.close
def closewindow(self,event):
self.Destroy()
if __name__=='__main__':
app=wx.PySimpleApp() #runs the program
frame=gui(parent=None,id=-1) #displays the program
frame.Show() #shows the application
app.MainLoop() #runs the application
我将 ItemName 添加为全局,因为在此之前我收到有关未定义 ItemName 的错误。
现在,我将“是您输入的内容”写入文件,但没有显示用户输入。我究竟做错了什么?