Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人听说过 Delphi 2010 之前版本的第三方鼠标手势支持?我想要的只是能够响应鼠标右键按住“向左滑动”和“向右滑动”。
向左滑动或向右滑动只不过是 X 坐标之间的比较。 只需将您的OnMouseDown活动中的 X 坐标与活动中的 X 坐标进行比较OnMouseUp。 如果结果是肯定的,那就是向左滑动。如果结果是否定的,则为向右滑动。
OnMouseDown
OnMouseUp