求助,关于C#中Timer的使用
我在form中放了一个picturebox,想在加载form的时候picturebox的visible为true,然后5秒钟后visible自动变为false,不知如何使用timer来实现这一功能,研究了半天还是没弄出来,请指教为谢!~

private void timer1_Tick(object sender, EventArgs e)
{
pictureBox1.Visible = false;
timer1.Stop();
}