forked from dgis/xsddiagram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LoginPromptForm.cs
36 lines (30 loc) · 921 Bytes
/
LoginPromptForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Windows.Forms;
namespace XSDDiagram
{
public partial class LoginPromptForm : Form
{
public LoginPromptForm(string label)
{
InitializeComponent();
this.textBoxLabel.Text = label;
}
public string Username { get; set; }
public string Password { get; set; }
protected override void OnLoad(EventArgs e)
{
base.OnLoad(e);
this.textBoxUsername.Text = Username;
this.textBoxPassword.Text = Password;
}
protected override void OnClosed(EventArgs e)
{
if (this.DialogResult == System.Windows.Forms.DialogResult.OK)
{
Username = this.textBoxUsername.Text;
Password = this.textBoxPassword.Text;
}
base.OnClosed(e);
}
}
}