如題,做了一個在運行時可拖動的按鈕,可是每次一拖動就會觸發Click事件,怎樣才能實現只拖動按鈕而不觸發Click事件,Click事件是必要的,不可省
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
private Point buttonlocation;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("button1");
}
private void button1_MouseUp(object sender, MouseEventArgs e)
{
buttonlocation = e.Location;
}
private void button1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
{
this.button1.Click -= button1_Click;
this.button1.Location = new Point(this.button1.Left + (e.X - buttonlocation.X), this.button1.Top + (e.Y - buttonlocation.Y));
}
}
private void button1_MouseDown(object sender, MouseEventArgs e)
{
buttonlocation = e.Location;
this.button1.Click -= button1_Click;
this.button1.Click += button1_Click;
}
}
}