Home > QLineEdit


PyQtでLineEditのマウス位置の変更を検知する方法

マウスイベントを使用する方法:from PyQt5.QtWidgets import QApplication, QLineEdit class CustomLineEdit(QLineEdit): def __init__(self): super().__init__() def mouseMoveEvent(self, event): # マウス位置の変更を検知する処理を記述 print("マウス位置が変更されました:", event.pos()) if __name__ == "__main__": app = QApplication([]) line_edi>>More