如何仅在 Qlabel 中获取鼠标位置? (对于 pyqt5)
How to get mouse position only in Qlabel? (for pyqt5)
如何只在Qlabel中获取鼠标位置?
我希望鼠标位置从 qlabel 开始。
所以:
qlabel loop
我的代码
def mousePressEvent(self, event):
ret = self.hasMouseTracking() # Back to mouse MouseTracking The state of
self.ui.labelLOOPVIDEO.setText(' The mouse moved :%s' % ret)
x = event.x()
y = event.y()
self.ui.labelLOOPVIDEO.setText(' mouse x coordinate :%s , mouse y coordinate :%s' % (x, y))
我不知道 self
在你的情况下代表什么,但如果它是小部件或 window 包含标签,正如我假设的那样,那么你可以使用这个坐标转换:
labelPos = self.ui.labelLOOPVIDEO.mapFrom(self, event.pos())
x = labelPos.x()
y = labelPos.y()
如何只在Qlabel中获取鼠标位置? 我希望鼠标位置从 qlabel 开始。 所以: qlabel loop
我的代码
def mousePressEvent(self, event):
ret = self.hasMouseTracking() # Back to mouse MouseTracking The state of
self.ui.labelLOOPVIDEO.setText(' The mouse moved :%s' % ret)
x = event.x()
y = event.y()
self.ui.labelLOOPVIDEO.setText(' mouse x coordinate :%s , mouse y coordinate :%s' % (x, y))
我不知道 self
在你的情况下代表什么,但如果它是小部件或 window 包含标签,正如我假设的那样,那么你可以使用这个坐标转换:
labelPos = self.ui.labelLOOPVIDEO.mapFrom(self, event.pos())
x = labelPos.x()
y = labelPos.y()