wxpython ProgressDialog 取消事件可能吗?

发布于 2024-11-05 04:27:06 字数 164 浏览 4 评论 0原文

如果我用wxPD_CAN_ABORT声明wxProgressDialog,ProgressDialog中将提供“取消”按钮。通常,要知道用户是否按下了“取消”,需要调用wxProgressDialog::Update。

如果在 wxProgressDialog 中按下“取消”,有没有办法获取事件?

if I declare wxProgressDialog with wxPD_CAN_ABORT, "Cancel" button will be provided in ProgressDialog. Normally, to know if user pressed "Cancel", wxProgressDialog::Update needs to be called.

Is there a way to get an event, if "Cancel" is pressed in wxProgressDialog?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笨死的猪 2024-11-12 04:27:06

您可以通过定义自定义对话框而不是普通的 ProgressDialog 来完成此操作:

class MyProgressDialog(wx.Dialog):
    def __init__(self, parent, id, title, text=''):
        wx.Dialog.__init__(self, parent, id, title, size=(200,150), style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER)

        self.text = wx.StaticText(self, -1, text)
        self.gauge = wx.Gauge(self, -1)
        self.closebutton = wx.Button(self, wx.ID_CLOSE)
        self.closebutton.Bind(wx.EVT_BUTTON, self.OnClose)

        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.text, 0 , wx.EXPAND)
        sizer.Add(self.gauge, 0, wx.ALIGN_CENTER)
        sizer.Add(self.closebutton, 0, wx.ALIGN_CENTER)

        self.SetSizer(sizer)
        self.Show()

    def OnClose(self, event):
        self.Destroy() 
        #can add stuff here to do in parent.

然后,您可以通过调用 MyProgressDialog.gauge.Update 在进度栏上进行更新,并将事件绑定到关闭按钮。

You could do this by defining a custom Dialog instead of the stock ProgressDialog:

class MyProgressDialog(wx.Dialog):
    def __init__(self, parent, id, title, text=''):
        wx.Dialog.__init__(self, parent, id, title, size=(200,150), style=wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER)

        self.text = wx.StaticText(self, -1, text)
        self.gauge = wx.Gauge(self, -1)
        self.closebutton = wx.Button(self, wx.ID_CLOSE)
        self.closebutton.Bind(wx.EVT_BUTTON, self.OnClose)

        sizer = wx.BoxSizer(wx.VERTICAL)
        sizer.Add(self.text, 0 , wx.EXPAND)
        sizer.Add(self.gauge, 0, wx.ALIGN_CENTER)
        sizer.Add(self.closebutton, 0, wx.ALIGN_CENTER)

        self.SetSizer(sizer)
        self.Show()

    def OnClose(self, event):
        self.Destroy() 
        #can add stuff here to do in parent.

You can then do updates on the progress bar by calling MyProgressDialog.gauge.Update, and have your event bound to the close button.

停顿的约定 2024-11-12 04:27:06

从 wx 2.9.1 版本开始,您可以使用 ProgressDialog.WasCancelled()

https://wxpython.org/Phoenix/docs/html/wx.GenericProgressDialog.html#wx-genericprogressdialog

Since version 2.9.1 of wx you can just use ProgressDialog.WasCancelled()

https://wxpython.org/Phoenix/docs/html/wx.GenericProgressDialog.html#wx-genericprogressdialog

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文