Beispiel #1
0
 private void Connexion_click(object sender, RoutedEventArgs e)
 {
     if (Nom.Text != string.Empty && Prenom.Text != string.Empty)
     {
         string token;
         string tokAd;
         using (Service.Service1Client client = new Service.Service1Client())
         {
             token = client.login(Nom.Text, Prenom.Text);
             tokAd = client.GetiDAdm();
         }
         if (token == tokAd)
         {
             WpFVItrine.PAdmin Pagead = new WpFVItrine.PAdmin(token);
             this.Close();
             Pagead.ShowDialog();
         }
         else
         {
             WpFVItrine.Window1 window = new WpFVItrine.Window1(token);
             this.Close();
             window.ShowDialog();
         }
     }
 }
 private void Return_Click(object sender, RoutedEventArgs e)
 {
     WpFVItrine.Window1 window = new WpFVItrine.Window1(Token.Text);
     this.Close();
     window.ShowDialog();
 }