垂直拖动项目,Y 位置不起作用
我有一个图片框,其中显示音符的图像。我希望能够在包含它的面板内上下拖动它时根据其放置位置的相应 Y 位置来更改音高的值。使用下面的代码,音高确实发生了变化,但似乎 Y 值只是随机的,当我拖动得越高,它应该向上,我拖动得越低,它应该向上。
private void StartDrag(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
isDragging = true;
pitch = e.Y;
this.Location = new Point(this.Location.X, pitch);
}
}
private void StopDrag(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
isDragging = false;
pitch = e.Y;
}
}
private void NoteDrag(object sender, System.Windows.Forms.MouseEventArgs e)
{
if (isDragging)
{
this.Top = this.Top + (e.Y - this.pitch); //move in Vertical direction
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您更改控件的位置(通过修改
this.Top
)时,通过MouseEventArgs
返回的鼠标坐标也会发生变化。您应该使用 e 参数rel="nofollow">Cursor.Position
获取绝对(屏幕)坐标,然后使用PointToClient< 父控件的 /code>
方法。这样你的坐标将独立于你的控件的位置。
为了更好地理解发生的情况,在执行所有这些操作之前,请在表单中添加两个标签,并在
NoteDrag
方法中添加类似的内容:When you change the position of your control (by modifying
this.Top
), mouse coordinates returned withMouseEventArgs
also change. Instead of using thee
parameter, you should useCursor.Position
to get absolute (screen) coordinates, and then transform them using thePointToClient
method of your parent control. That way your coordinates will be independent of the position of your control.To get a better understanding what happens, before doing all this, add two labels to your form, and add something like this inside your
NoteDrag
method: