-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
199 lines (165 loc) · 6.73 KB
/
Form1.cs
File metadata and controls
199 lines (165 loc) · 6.73 KB
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
using System;
using System.Globalization;
using System.Windows.Forms;
namespace PathCalculation
{
public partial class Form1 : Form
{
private const int GasolinePriceColumnIndex = 0;
private const int GasPriceColumnIndex = 1;
private const int MileageColumnIndex = 2;
private const int SavingsColumnIndex = 3;
private bool isUpdatingMileage;
public Form1()
{
InitializeComponent();
InitializeTable();
}
private void InitializeTable()
{
if (calculationGrid.Rows.Count > 0)
{
calculationGrid.CurrentCell = calculationGrid.Rows[0].Cells[GasolinePriceColumnIndex];
}
UpdateStatus("Введите данные. Для новой строки начните ввод в последней пустой строке таблицы.");
}
private void calculationGrid_CellValueChanged(object? sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex < 0 || e.ColumnIndex == MileageColumnIndex || isUpdatingMileage)
{
return;
}
RecalculateMileage(e.RowIndex);
}
private void calculationGrid_CellEndEdit(object? sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
RecalculateMileage(e.RowIndex);
}
}
private void calculationGrid_DataError(object? sender, DataGridViewDataErrorEventArgs e)
{
e.ThrowException = false;
if (e.RowIndex >= 0)
{
ClearMileageCell(e.RowIndex);
}
UpdateStatus("Используйте только числовые значения.");
}
private void RecalculateMileage(int rowIndex)
{
if (rowIndex < 0 || rowIndex >= calculationGrid.Rows.Count)
{
return;
}
DataGridViewRow row = calculationGrid.Rows[rowIndex];
if (IsRowEmpty(row))
{
ClearMileageCell(rowIndex);
UpdateStatus("Введите данные. Для новой строки начните ввод в последней пустой строке таблицы.");
return;
}
if (!TryReadDecimal(row, GasolinePriceColumnIndex, "Цена бензина", out decimal gasolinePrice, out string gasolineError))
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, gasolineError));
return;
}
if (gasolinePrice < 0)
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, "цена бензина не может быть отрицательной."));
return;
}
if (!TryReadDecimal(row, GasPriceColumnIndex, "Цена газа", out decimal gasPrice, out string gasError))
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, gasError));
return;
}
if (gasPrice < 0)
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, "цена газа не может быть отрицательной."));
return;
}
if (!TryReadDecimal(row, SavingsColumnIndex, "Экономия", out decimal savings, out string savingsError))
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, savingsError));
return;
}
if (savings < 0)
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, "экономия не может быть отрицательной."));
return;
}
decimal difference = gasolinePrice - gasPrice;
if (difference <= 0)
{
ClearMileageCell(rowIndex);
UpdateStatus(BuildRowMessage(rowIndex, "цена бензина должна быть больше цены газа."));
return;
}
decimal mileage = decimal.Round(savings / difference, 2, MidpointRounding.AwayFromZero);
SetMileageValue(rowIndex, mileage);
UpdateStatus(BuildRowMessage(rowIndex, $"нужно проехать {mileage:N2} км, чтобы получить экономию {savings:N2}."));
}
private bool TryReadDecimal(
DataGridViewRow row,
int columnIndex,
string fieldName,
out decimal value,
out string errorMessage)
{
string rawValue = GetCellText(row, columnIndex);
if (string.IsNullOrWhiteSpace(rawValue))
{
value = 0;
errorMessage = $"введите значение в поле \"{fieldName}\".";
return false;
}
if (!decimal.TryParse(rawValue, NumberStyles.Number, CultureInfo.CurrentCulture, out value))
{
errorMessage = $"поле \"{fieldName}\" должно содержать число.";
return false;
}
errorMessage = string.Empty;
return true;
}
private bool IsRowEmpty(DataGridViewRow row)
{
return string.IsNullOrWhiteSpace(GetCellText(row, GasolinePriceColumnIndex))
&& string.IsNullOrWhiteSpace(GetCellText(row, GasPriceColumnIndex))
&& string.IsNullOrWhiteSpace(GetCellText(row, SavingsColumnIndex));
}
private string GetCellText(DataGridViewRow row, int columnIndex)
{
return Convert.ToString(row.Cells[columnIndex].EditedFormattedValue, CultureInfo.CurrentCulture)?.Trim() ?? string.Empty;
}
private void ClearMileageCell(int rowIndex)
{
SetMileageValue(rowIndex, null);
}
private void SetMileageValue(int rowIndex, decimal? mileage)
{
if (rowIndex < 0 || rowIndex >= calculationGrid.Rows.Count)
{
return;
}
isUpdatingMileage = true;
calculationGrid.Rows[rowIndex].Cells[MileageColumnIndex].Value = mileage;
isUpdatingMileage = false;
}
private static string BuildRowMessage(int rowIndex, string message)
{
return $"Строка {rowIndex + 1}: {message}";
}
private void UpdateStatus(string message)
{
statusLabel.Text = message;
}
}
}