移动窗体
Screen p;
this.Top = p.WorkingArea.Height - 5;
this.Height = 1;
int i;
for (i = 0; i < 120; i++)
{
Thread.Sleep(5);
if (this.Height >= 360)
{
}
else
{
this.Left = p.WorkingArea.Width - this.Width;
this.Top = this.Top - 3;
this.Height = this.Height + 3;
this.Show();
this.Refresh();
Thread.Sleep(5);
}
}