예제 #1
0
파일: Accueil.cs 프로젝트: iLaziKx/SharPool
        private void metroTile2_Click(object sender, EventArgs e)
        {
            AjoutEntreprise ajoutEntreprise = new AjoutEntreprise();

            ajoutEntreprise.Show();
            this.Close();
        }
예제 #2
0
 private void btnAjouterEntreprise_Click(object sender, RoutedEventArgs e)
 {
     AjoutEntreprise formEntreprise = new AjoutEntreprise();
     formEntreprise.ShowDialog();
     cboListeEntreprises.ItemsSource = ctrl.listeEntreprises();
 }