using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace felixyin { public partial class SplashForm : Form { public SplashForm() { InitializeComponent(); } private void SplashForm_FormClosed(object sender, FormClosedEventArgs e) { //关闭定时器 } private void SplashForm_VisibleChanged(object sender, EventArgs e) { this.ControlBox = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.ShowIcon = false; this.ShowInTaskbar = false; this.Show(); } private void SplashForm_Deactivate(object sender, EventArgs e) { this.ControlBox = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.ShowIcon = false; this.ShowInTaskbar = false; this.Show(); } private void SplashForm_StyleChanged(object sender, EventArgs e) { } } }