Guest User

Untitled

a guest
May 20th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public Account user { get; } = new Account();
  2.  
  3. var form=new CreateAccountForm();
  4. form.ShowDialog();
  5.  
  6. var form=new CreateAccountForm();
  7. if (form.ShowDialog()==DialogResult.OK)
  8. {
  9. // Do something with form.user here.
  10. }
Add Comment
Please, Sign In to add comment