private void timer_Tick(object sender, EventArgs e) { bunifuCircleProgressbar1.Value += 1; bunifuCircleProgressbar1.Text = bunifuCircleProgressbar1.ToString() + "%"; if (bunifuCircleProgressbar1.Value == 100) { timer.Enabled = false; FormConnexion form = new FormConnexion(); form.Show(); this.Hide(); } }
private void gunaButton1_Click(object sender, EventArgs e) { FormConnexion frm = new FormConnexion(); frm.Show(); }