Exemple #1
0
 public static void Back(Object sender, EventArgs e)
 {
     ListBox.Hide();
     Button1.Show();
     Button2.Show();
     Button3.Show();
     Button4.Hide();
 }
Exemple #2
0
        private void PictureBox2_Click(object sender, EventArgs e)
        {
            Panel1.Size = new Size(136, 727);

            Button1.Show();
            Button2.Show();
            Button3.Show();
            Button4.Show();
            pictureBox1.Show();
            Label6.Show();

            PictureBox2.Hide();
        }
Exemple #3
0
 private void Timer2_Tick(object sender, EventArgs e)
 {
     circularProgressBar2.Value  += 2;
     circularProgressBar2.Text    = circularProgressBar2.Value.ToString();
     circularProgressBar2.Minimum = 0;
     circularProgressBar2.Maximum = 100;
     if (circularProgressBar2.Value == 100)
     {
         timer2.Stop();
         circularProgressBar2.Value = 0;
         circularProgressBar2.Text  = circularProgressBar2.Value.ToString();
         Button1.Show();
         circularProgressBar2.Hide();
         Button6.Show();
         Button13.Hide();
         Button4.Show();
         Process.Start(@"C:\Program Files\Game_Booster\Scrips\cerrar.vbs");
     }
 }