gpt4 book ai didi

c# - 在鼠标移动 onmousedown 时连续获取鼠标坐标

转载 作者:行者123 更新时间:2023-12-02 05:08:50 25 4
gpt4 key购买 nike

当鼠标向下和向上时,我可以获得鼠标坐标

  private void panel2_MouseDown(object sender, MouseEventArgs e)
{
mouseClickedX = e.X;
mouseClickedY = e.Y;
}

private void panel2_MouseUp(object sender, MouseEventArgs e)
{
mouseReleaseX = e.X;
mouseReleaseY = e.Y;
}

但是我需要在鼠标按下时连续移动鼠标坐标,直到鼠标抬起为止。仅当鼠标移动时我不需要坐标,但当鼠标按下并移动时我需要坐标。怎么做?

编辑:

   private void panel2_MouseMove(object sender, MouseEventArgs e)
{
while (isDragging) {
mouseMoveX = e.X;
mouseMoveY = e.Y;
label1.Text = mouseMoveX.ToString();
label2.Text = mouseMoveY.ToString();
}
}

我正在使用 isDragging true 或 false onmosueup 和 down 但这只会挂起应用程序。我应该使用定时器还是线程?

最佳答案

您需要处理MouseMove 并检查鼠标是否按下。

关于c# - 在鼠标移动 onmousedown 时连续获取鼠标坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15840538/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com