我在Python中有一些经验,特别是在来自EventGhost的wxpython中,但我有一些类的问题。我看过周围并尝试了很多但没有成功。
我的问题是我想从我的" MyDialog()"中的按钮关闭我的Gui。类:
class ShowInputDialog(eg.ActionBase):
name = "Show Input Dialog"
description = "Show an input dialog that allows you to create an EventGhost event that you can then use to trigger AutoRemote messages or notifications"
def __call__(self):
class MyDialog():
def __init__(self):
########################Main Dialog###########################
no_sys_menu = wx.CLIP_CHILDREN | wx.STAY_ON_TOP | wx.FRAME_NO_TASKBAR | wx.NO_BORDER | wx.FRAME_SHAPED
self.Dialog = wx.Frame(None, wx.ID_ANY, "Hello World", style=no_sys_menu, size=(400,600))
########################Header###########################
Header = wx.Panel(self.Dialog, wx.ID_ANY, size=(400,600))
HeaderSizer = wx.GridSizer(rows=1, cols=2, hgap=5, vgap=5)
HeaderSizer.Add(wx.StaticText(Header, label="Hello World"), flag=wx.ALIGN_CENTER_VERTICAL)
button = wx.Button(Header, label='close')
button.Bind(wx.EVT_BUTTON, self.close)
HeaderSizer.Add(button, 0, wx.ALIGN_RIGHT, 0)
Header.SetSizer(HeaderSizer)
upDownSizer = wx.BoxSizer(wx.VERTICAL)
upDownSizer.Add(Header, 0, flag=wx.EXPAND)
self.Dialog.SetSizer(upDownSizer)
self.Dialog.Fit()
self.Dialog.Show()
def close(self, event):
self.Close()
print "see you soon"
wx.CallAfter(MyDialog)
如果我打电话"关闭"从我的按钮我得到了
AttributeError: MyDialog instance has no attribute 'Close'
但如何打电话"关闭"?我已经阅读了超过" MyDialog"的初始化。但是没有成功,并且也不知道这是否能解决我的问题。
谢谢你,并不是一个菜鸟
答案 0 :(得分:1)
self是你自己的类,它不是wx类...如果你希望它具有wx.Dialog
的属性你需要继承wx.Dialog
最简单的解决方案可能是在self.Dialog
上调用close,这似乎是您对话框的实际实例
def close(self, event):
self.Dialog.Close()
print "see you soon"