Exemplo n.º 1
0
 public CreateAccount(StoreApp f, string _name, string _password, string _repeatPassword)
 {
     InitializeComponent();
     form = f;
     UsernameTextBox.Text       = _name;
     PasswordTextBox.Text       = _password;
     RepeatPasswordTextBox.Text = _repeatPassword;
 }
Exemplo n.º 2
0
 public CreateAccount(StoreApp f)
 {
     InitializeComponent();
     form = f;
 }
Exemplo n.º 3
0
 public LogIn(StoreApp f)
 {
     InitializeComponent();
     form = f;
 }