wxPython:在面板上拖放wx.Button会使应用程序崩溃

时间:2019-01-21 14:57:40

标签: python python-3.x wxpython wxpython-phoenix

我正在尝试构建一个用户可以在面板上拖放一些按钮的应用程序。 我首先遇到有关丢失鼠标捕获事件的错误,最后我发现必须捕获此事件才能防止该错误。

但是,现在,当我运行该应用程序时,可以拖放该按钮,但是在释放鼠标左键之后该应用程序完全冻结了。

我必须在终端上使用Ctrl + C停止它,否则我的鼠标将无法在桌面环境中的任何其他窗口中使用。

我怀疑鼠标捕获事件的问题得不到很好的解决。

我正在Ubuntu 16.04下工作,并从软件包(apt)中安装了Python 3.5。 我既尝试通过软件包(apt)安装了wxPython 4.0.0,又尝试通过pip安装了最新的wxPython 4.0.4。

在两种情况下,单击或拖放按钮后,应用程序都将完全冻结。

import wx


class DragButton(wx.Button):
    def __init__(self, parent, id=wx.ID_ANY, label="", pos=(0, 0)):
        super().__init__(parent=parent, id=id, label=label, pos=pos)
        self._dragging = False

        self.Bind(wx.EVT_LEFT_DOWN, self.OnLeftDown)
        self.Bind(wx.EVT_LEFT_UP, self.OnLeftUp)
        self.Bind(wx.EVT_MOTION, self.OnMouseMove)
        self.Bind(wx.EVT_MOUSE_CAPTURE_LOST, lambda evt: None)

    def OnLeftDown(self, evt):
        print("Left down")
        if  not self.HasCapture():
            self.CaptureMouse()
        x, y = self.ClientToScreen(evt.GetPosition())
        originx, originy = self.GetPosition()
        dx = x - originx
        dy = y - originy
        self.delta = ((dx, dy))

    def OnLeftUp(self, evt):
        print("Left UPPPP")
        if self.HasCapture():
            self.ReleaseMouse()

    def OnMouseMove(self, evt):
        if evt.Dragging() and evt.LeftIsDown():
            x, y = self.ClientToScreen(evt.GetPosition())
            fp = (x - self.delta[0], y - self.delta[1])
            self.Move(fp)


class GDomFrame(wx.Frame):
    def __init__(self, parent, title):
        super().__init__(parent, title=title, size=(350, 300))

        self._init_ui()
        self.Centre()


    def _init_ui(self):
        panel = wx.Panel(self)

        self.button = DragButton(panel, label="Drag me", pos=(10, 10))


if __name__ == '__main__':
    print("wxPython version: {}".format(wx.__version__))
    app = wx.App()
    ex = GDomFrame(None, title='GDom Application')
    ex.Show()
    app.MainLoop()

使用此代码,我希望有一个按钮,可以在面板上多次移动。

1 个答案:

答案 0 :(得分:1)

我已经测试了类似的脚本。它在Windows上可以正常工作,但在ubuntu 16.04上却不能。我解决了这样的问题。

def OnLeftDown(self, evt):
    print("Left down")
    if not self.HasCapture():
        self.CaptureMouse()
        self.ReleaseMouse() # <------

我的脚本:

import wx

class Mywin(wx.Frame): 
    def __init__(self, parent, title): 
        super(Mywin, self).__init__(parent, title = title,size = (400,200))  
        self.InitUI()
        self.Centre() 

    def InitUI(self):
        self.panel = wx.Panel(self)
        vbox = wx.BoxSizer(wx.VERTICAL) 
        self.btn = wx.Button(self.panel,-1,"click Me",pos=(10, 10)) 
        vbox.Add(self.btn,0,wx.ALIGN_CENTER) 

        self.btn.Bind(wx.EVT_LEFT_DOWN, self.OnMouseDown)
        self.btn.Bind(wx.EVT_MOTION,  self.OnMouseMove)
        self.btn.Bind(wx.EVT_LEFT_UP,  self.OnMouseUp)
        print ("Init pos:",self.btn.GetPosition())

    def OnMouseDown(self, event):
        if (not self.btn.HasCapture()):
            self.btn.CaptureMouse()
            self.btn.ReleaseMouse()
            sx,sy   = self.panel.ScreenToClient(self.btn.GetPosition())
            dx,dy  = self.panel.ScreenToClient(wx.GetMousePosition())
            self.btn._x,self.btn._y   = (sx-dx, sy-dy)

    def OnMouseMove(self, event):
        if event.Dragging() and event.LeftIsDown():
            x, y = wx.GetMousePosition()
            self.btn.SetPosition(wx.Point(x+self.btn._x,y+self.btn._y))
            print(self.btn.GetPosition())

    def OnMouseUp(self, event):
        if (self.btn.HasCapture()): 
            self.btn.ReleaseMouse()
            print ("Final pos:",self.btn.GetPosition())

def main():
    app = wx.App()
    w = Mywin(None, title='Button demo')
    w.Show()
    app.MainLoop()

if __name__ == '__main__':
    main()