Sign up to receive Decoded, a new monthly digest with product updates, feature release info, continuing education opportunities, and more.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
Have a better answer? Share it in a comment.
That's pretty easy:
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{
this.Height += 10;
if (this.Height >= 700)
timer1.Stop();
}
All you need is to twick a bit with timer interval and increment (this.Height += 10).