-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathFormInputAndAction.cs
118 lines (100 loc) · 3.16 KB
/
FormInputAndAction.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using HslCommunication.Controls;
namespace CommonLibrary
{
/// <summary>
/// 支持输入一串字符串并执行相应的操作
/// </summary>
public partial class FormInputAndAction : Form
{
#region Constructor
/// <summary>
/// 实例化一个窗口支持输出和响应
/// </summary>
/// <param name="action">响应的方法</param>
/// <param name="text_default">默认的数据</param>
/// <param name="caption">标题</param>
/// <param name="length">允许输入的文本的最大长度</param>
public FormInputAndAction(Func<string, bool> action, string text_default = "", string caption = "请输入数据", int length = 1000)
{
InitializeComponent();
ButtonAction = action;
Caption = caption;
InputLength = length;
DefaultStr = text_default;
Icon = UserSystem.GetFormWindowIcon();
}
#endregion
private void FormInputAndAction_Load(object sender, EventArgs e)
{
Text = Caption;
if (InputLength < int.MaxValue)
{
label1.Text += InputLength;
}
else
{
label1.Text += "无";
}
textBox1.Text = DefaultStr;
}
private void textBox1_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyCode==Keys.Enter)
{
textBox1.Focus();
}
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
label3.Text = textBox1.Text.Length.ToString();
if(textBox1.Text.Length>InputLength)
{
label2.ForeColor = Color.Red;
label3.ForeColor = Color.Red;
}
else
{
label2.ForeColor = Color.DimGray;
label3.ForeColor = Color.DimGray;
}
}
private void userButton1_Click(object sender, EventArgs e)
{
if (textBox1.Text.Length > InputLength)
{
MessageBox.Show("字数太多,超出了" + InputLength + "字");
return;
}
if(ButtonAction(textBox1.Text))
{
MessageBox.Show("提交成功!");
}
else
{
MessageBox.Show("提交失败!");
}
}
private void FormInputAndAction_FormClosing(object sender, FormClosingEventArgs e)
{
ButtonAction = null;//释放
}
private void FormInputAndAction_Shown(object sender, EventArgs e)
{
textBox1.Focus();
}
#region Private Members
private Func<string, bool> ButtonAction = null;
private string Caption = "";
private int InputLength = int.MaxValue;
private string DefaultStr = "";
#endregion
}
}