コード例 #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
ファイル: LogIn.cs プロジェクト: silk-code/OOP-C--Project
 public LogIn(StoreApp f)
 {
     InitializeComponent();
     form = f;
 }