SlopTonio
SlopTonio

Reputation: 1105

Animation of form resize from left to right

I am using the following code to resize the form from right to left

while (this.Width >= 15)
{
  this.Width--;
  Application.DoEvents();
}

How would I get the same functionality when shrinking the form from left to right?

Upvotes: 2

Views: 936

Answers (1)

adv12
adv12

Reputation: 8551

while (this.Width >= 15)
{
  this.Width--;
  this.Left++;
  Application.DoEvents();
}

Upvotes: 4

Related Questions