wxpython全局变量
我试图创建 wx.Panel、wx.Button 和 wx.TextCtrl 的全局变量,
以便我可以在
来自 java 背景的不同函数中“编辑”它们,我想可能是“panel = wx.Panel()”之外的所有变量函数可能可以工作,但我收到一个错误,说我需要向它发送参数,而且我不知道这些参数应该是什么。
免责声明:我是一个Python新手。
im trying to create global variables of wx.Panel, wx.Button, and wx.TextCtrl,
so that i can "Edit" them in different functions
coming from a java background i thought maybe "panel = wx.Panel()" outside all functions might work but i get an error saying i need to send arguments to it, and i dont know what those arguments should be.
disclaimer: i'm a python noobie.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它采用由wxPanel构造函数定义的参数。
It takes the arguments defined by the wxPanel constructor.