-
Notifications
You must be signed in to change notification settings - Fork 5
/
InputBox.cs
63 lines (54 loc) · 1.64 KB
/
InputBox.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace AIEdit
{
public partial class InputBox : Form
{
private DialogResult result;
private string resulttext;
public class InputResult
{
private DialogResult dr;
private string text;
public InputResult(DialogResult dr, string text)
{
this.dr = dr;
this.text = text;
}
public DialogResult ReturnCode { get { return dr; } }
public string Text { get { return text; } }
};
public InputBox()
{
InitializeComponent();
result = DialogResult.Cancel;
resulttext = "";
}
public static InputResult Show(string title, string description, string initialText = "")
{
InputBox input = new InputBox();
input.Text = title;
input.textBox2.Text = description;
input.textBox1.Text = initialText;
input.ShowDialog();
return new InputResult(input.ResultCode, input.ResultText);
}
private DialogResult ResultCode { get { return result; } }
private string ResultText { get { return resulttext; } }
private void btnOK_Click(object sender, EventArgs e)
{
result = DialogResult.OK;
resulttext = textBox1.Text;
this.Close();
}
private void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}