-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApplicantForm.cs
353 lines (252 loc) · 10.6 KB
/
ApplicantForm.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
using project;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Security.Policy;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using WindowsFormTest.LogicProgram;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace WindowsFormTest
{
public partial class ApplicantForm : Form
{
public ApplicantForm()
{
InitializeComponent();
FullName.Text = "Введите ФИО";
FullName.ForeColor = Color.Gray;
DateOfBirth.Text = "Введите дату рождения";
DateOfBirth.ForeColor = Color.Gray;
Education.Text = "Введите образование";
Education.ForeColor = Color.Gray;
listBox1.Items.Clear();
//foreach (var i in Database.applicants) listBox1.Items.Add(i.FullName);
foreach (var i in Database.applicants) listBox1.Items.Add($"{i.FullName} | {i.DateOfBirth.ToShortDateString()} | {i.Education}");
}
private void button2_Click(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void folderBrowserDialog1_HelpRequest(object sender, EventArgs e)
{
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button6_Click(object sender, EventArgs e)
{
}
private void button18_Click(object sender, EventArgs e)
{
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void panel2_Paint(object sender, PaintEventArgs e)
{
}
private void Applicant_Click(object sender, EventArgs e)
{
//this.Hide();
}
private void Employee_Click(object sender, EventArgs e)
{
//this.Hide();
}
private void Post_Click(object sender, EventArgs e)
{
//this.Hide();
}
private void SubDivision_Click(object sender, EventArgs e)
{
//this.Hide();
}
private void Exit_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
MainForm mainform = new MainForm();
mainform.Show();
}
private void FullName_Enter(object sender, EventArgs e)
{
if(FullName.Text == "Введите ФИО")
FullName.Text = "";
FullName.ForeColor = Color.Black;
}
private void FullName_Leave(object sender, EventArgs e)
{
if (FullName.Text == "")
{
FullName.Text = "Введите ФИО";
FullName.ForeColor = Color.Gray;
}
}
private void DateOfBirth_Enter(object sender, EventArgs e)
{
if (DateOfBirth.Text == "Введите дату рождения")
DateOfBirth.Text = "";
DateOfBirth.ForeColor = Color.Black;
}
private void DateOfBirth_Leave(object sender, EventArgs e)
{
if (DateOfBirth.Text == "")
{
DateOfBirth.Text = "Введите дату рождения";
DateOfBirth.ForeColor = Color.Gray;
}
}
private void Education_Enter(object sender, EventArgs e)
{
if (Education.Text == "Введите образование")
Education.Text = "";
Education.ForeColor = Color.Black;
}
private void Education_Leave(object sender, EventArgs e)
{
if (Education.Text == "")
{
Education.Text = "Введите образование";
Education.ForeColor = Color.Gray;
}
}
private void Add_Applicant_Click_1(object sender, EventArgs e)
{
string[] data = DateOfBirth.Text.Split('.');
int Day = int.Parse(data[0]);
int Month = int.Parse(data[1]);
int Year = int.Parse(data[2]);
var applicant = new Applicant(FullName.Text, new DateTime(Year, Month, Day), Education.Text);
Database.applicants.Add(applicant);
//обновляем коллекцию
listBox1.Items.Clear();
foreach (var i in Database.applicants) listBox1.Items.Add($"{i.FullName} | {i.DateOfBirth.ToShortDateString()} | {i.Education}");
MessageBox.Show(
"Успешно добавлен: " + applicant.FullName,
"Сообщение");
/*
//находим индекс, где встречается в БД наше ФИО
int index = Database.applicants.IndexOf(Database.applicants.Where(n => n.FullName == FullName.Text).FirstOrDefault());
//PS возможно тут надо все вхождения ФИО удалить
string[] data = DateOfBirth.Text.Split('.');
int Day = int.Parse(data[0]);
int Month = int.Parse(data[1]);
int Year = int.Parse(data[2]);
var applicant = new Applicant(FullName.Text, new DateTime(Year, Month, Day), Education.Text);
//Заменяем на новую
Database.applicants[index] = applicant;
//Удаляем все вхождения с выбранным ФИО
Database.applicants.RemoveAll(x => x.FullName == FullName.Text);
*/
}
private void FullName_TextChanged(object sender, EventArgs e)
{
}
private void Remove_Click(object sender, EventArgs e)
{
}
private void RemoveApplicant_Click(object sender, EventArgs e)
{
}
private void RedApplicant_Click(object sender, EventArgs e)
{
}
private void ApplicantListBox_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void DateOfBirth_TextChanged(object sender, EventArgs e)
{
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void удалитьToolStripMenuItem_Click(object sender, EventArgs e)
{
//При клике правой мыши и выборе удалить, получаем текст с выбранного элемента списка
string fname = listBox1.SelectedItem.ToString();
//потом парсить начинаю
string[] parsing = fname.Split('|');
fname = parsing[0].Trim();
//Удаляем все вхождения с выбранным ФИО с базы данных
Database.applicants.RemoveAll(x => x.FullName == fname);
//обновляем коллекцию
listBox1.Items.Clear();
//foreach (var i in Database.applicants) listBox1.Items.Add(i.FullName);
foreach (var i in Database.applicants) listBox1.Items.Add($"{i.FullName} | {i.DateOfBirth.ToShortDateString()} | {i.Education}");
}
private void редактироватьToolStripMenuItem_Click(object sender, EventArgs e)
{
//При клике правой мыши и выборе выбор, получаем индекс с выбранного элемента списка
int index_it = listBox1.SelectedIndex;
string[] data = DateOfBirth.Text.Split('.');
int Day = int.Parse(data[0]);
int Month = int.Parse(data[1]);
int Year = int.Parse(data[2]);
//И заполняем поля класса соискатель с нашей формы
Database.applicants[index_it].FullName = FullName.Text;
Database.applicants[index_it].DateOfBirth = new DateTime(Year, Month, Day);
Database.applicants[index_it].Education = Education.Text;
//обновляем коллекцию
listBox1.Items.Clear();
foreach (var i in Database.applicants) listBox1.Items.Add($"{i.FullName} | {i.DateOfBirth.ToShortDateString()} | {i.Education}");
}
private void выбратьToolStripMenuItem_Click(object sender, EventArgs e)
{
//При клике правой мыши и выборе выбор, получаем индекс с выбранного элемента списка
int index_it = listBox1.SelectedIndex;
//И заполняем поля нашей формы
FullName.Text = Database.applicants[index_it].FullName;
DateOfBirth.Text = Database.applicants[index_it].DateOfBirth.ToShortDateString();
Education.Text = Database.applicants[index_it].Education;
}
private void ApplicantForm_MouseEnter(object sender, EventArgs e)
{
}
Point lastpoint;
private void ApplicantForm_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left) {
this.Left += e.X - lastpoint.X; //смещение по X
this.Top += e.Y - lastpoint.Y; //смещение по Y
}
}
private void ApplicantForm_MouseDown(object sender, MouseEventArgs e)
{
lastpoint = new Point(e.X, e.Y); //место где нажали на мышку (начало координат)
}
private void panel1_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
this.Left += e.X - lastpoint.X; //смещение по X
this.Top += e.Y - lastpoint.Y; //смещение по Y
}
}
private void panel1_MouseDown(object sender, MouseEventArgs e)
{
lastpoint = new Point(e.X, e.Y); //место где нажали на мышку (начало координат)
}
}
}