private void SDLTMRepair_Load(object sender, EventArgs e) { var waitForm = new WaitForm { Width = Width - 20, Height = Height - 42, Location = new Point(Location.X + 10, Location.Y + 32), Opacity = 0.7 }; }
private void SDLTMRepair_Load(object sender, EventArgs e) { var waitForm = new WaitForm { Width = this.Width - 20, Height = this.Height - 42, Location = new Point(this.Location.X + 10, this.Location.Y + 32), Opacity = 0.7 }; // waitForm.Show(); }
private void SDLTMRepair_Load(object sender, EventArgs e) { var waitForm = new WaitForm { Width = this.Width - 20, Height = this.Height - 42, Location = new Point(this.Location.X + 10, this.Location.Y + 32), Opacity = 0.7 }; waitForm.Show(); }