实现效果:
知识运用:
Timer组件的Start方法 窗体的FormBorderStyle属性
补充:属性为FixedToolWindow枚举值的窗体通常不显示在任务栏中
但是必须确保ShowInTaskbar属性设置为false 因为其默认值为true
实现代码:
private void Form1_Load(object sender, EventArgs e) { this.FormBorderStyle = FormBorderStyle.None; this.BackgroundImage = Properties.Resources.StartImg; timer1.Start(); timer1.Interval = 3000; }