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