我有一个小程序,其中包含一个名为的按钮button1
和一个名为的面板panel1
,其颜色为绿色。到目前为止,该程序允许您button1
在表单中拖动。我正在尝试扩展此程序,因此当button1
将其放在面板上时,面板将颜色变为红色。
表格:
到目前为止的代码:
System.Drawing.Point OldPosition;
public Form1()
{
InitializeComponent();
}
private void button1_MouseDown(object sender, MouseEventArgs e)
{
//Only prepare if the button click down is the left button
if (e.Button == MouseButtons.Left)
{
//Store the current mouse location
OldPosition = e.Location;
//Change the mouse cursor if you want
button1.Cursor = Cursors.Hand;
}
}
private void button1_MouseMove(object sender, MouseEventArgs e)
{
//Only move if the left button still down
if (e.Button == MouseButtons.Left)
{
button1.Location = new Point(button1.Location.X + (e.X - OldPosition.X), button1.Location.Y + (e.Y - OldPosition.Y));
}
}
private void Form1_Load(object sender, EventArgs e)
{
panel1.BackColor = Color.Green;
}
private void panel1_MouseEnter(object sender, EventArgs e)
{
if (button1.Location == panel1.Location)
panel1.BackColor = Color.Red; //im not sure how to do this part
}