I have got problem with an Picturebox(picWorld). When I want to change its size and location like this code, It took much time because I think it is updating twice:
private void lblWorld_MouseEnter(object sender, EventArgs e)
{
picWorld.Size = new Size(148, 148);
picWorld.Location = new Point(picWorld.Location.X - 12, picWorld.Location.Y - 12);
}
Is there any way to make it faster?