Exemplo n.º 1
0
 private void view_btn_Click(object sender, RoutedEventArgs e)
 {
     form_p.Window1 window1 = new form_p.Window1();
     window1.ValueChanged += new Action <string, string>((x, y) =>
     {
         client_id  = Convert.ToInt32(x);
         text1.Text = y;
     });
     window1.ShowDialog();
 }