Ejemplo n.º 1
0
 public Reg_win(Profile_win prof, CustomList cust)
 {
     InitializeComponent();
     Title            = "Редактирование";
     b_reg.Click     += B_edit_Click;
     this.prof        = prof;
     id               = cust.id;
     old_login        = tb_login.Text = cust.login;
     tb_name.Text     = cust.fname;
     tb_sname.Text    = cust.sname;
     tb_pname.Text    = cust.pname;
     tb_mail.Text     = cust.mail;
     date_birth.Text  = cust.birthday;
     tb_pass.Password = tb_repass.Password = cust.pass;
 }
Ejemplo n.º 2
0
        private void B_prof_Click(object sender, RoutedEventArgs e)
        {
            Profile_win profile = new Profile_win(this);

            profile.Show();
        }
Ejemplo n.º 3
0
 public Passreq_win(Profile_win super)
 {
     InitializeComponent();
     this.super = super;
 }