Esempio 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;
 }
Esempio n. 2
0
 public CreateAccount(StoreApp f)
 {
     InitializeComponent();
     form = f;
 }
Esempio n. 3
0
 public LogIn(StoreApp f)
 {
     InitializeComponent();
     form = f;
 }