Qt Python 窗口鼠标移动时崩溃:为何会出现“Mwindow' object has no attribute 'mouse_x'”错误?

qt python 窗口鼠标移动时崩溃:为何会出现“mwindow' object has no attribute 'mouse_x'”错误?

mousemoveevent 异常崩溃

问题描述:

在给定的 qt python 代码中,当鼠标移动事件 mousemoveevent 触发时,窗口会出现崩溃,显示 "mwindow' object has no attribute 'mouse_x'" 错误。

问题分析:

立即学习Python免费学习笔记(深入)”;

调试后发现,崩溃的原因是 mouse_x 和 mouse_y 变量未在 mousemoveevent 中赋值。这些变量是在 mousepressevent 中设置的,但当 mousemoveevent 触发时,鼠标可能尚未按下,因此变量尚未初始化。

解决方案:

要在 mousepressevent 中添加一个判断,以确保在 moveevent 事件触发时 mouse_x 和 mouse_y 变量已赋值。修改后的代码如下:

def mousePressEvent(self, evt) :
    self.mousex = evt.globalX()
    self.mousey = evt.globalY()

    self.btn_x = self.btn.x()
    self.btn_y = self.btn.y()

def mouseMoveEvent(self, evt2):
    if hasattr(self, 'mousex') and hasattr(self, 'mousey'):
        print(self.mousex, self.mousey)

此修改确保 mouse_x 和 mouse_y 变量仅在按下鼠标后才被赋值,从而避免了在 mousemoveevent 触发时出现的崩溃问题。

以上就是Qt Python 窗口鼠标移动时崩溃:为何会出现“Mwindow' object has no attribute 'mouse_x'”错误?的详细内容,更多请关注其它相关文章!