| | |
| | | HydroCalcuResult calcuResult |
| | | ) |
| | | { |
| | | |
| | | _hydroInfo = hydroInfo; |
| | | _allMonitorList = allMonitorList; |
| | | _calcuResult = calcuResult; |
| | | InitialSingleColumns(); |
| | | InitialSingleDataTable(); |
| | | var overlay = this.ShowOverlay(); |
| | | this.bindingSource1.DataSource = _dt; |
| | | this.bindingSource1.ResetBindings(false); |
| | | this.gridView1.RefreshData(); |
| | | overlay.Close(); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | List<HydroWorkingVmo> allWorkingList |
| | | ) |
| | | { |
| | | |
| | | _hydroInfo = hydroInfo; |
| | | _allMonitorList = allMonitorList; |
| | | _allWorkingList = allWorkingList; |
| | | var overlay = this.ShowOverlay(); |
| | | InitialMultiColumns(); |
| | | InitialMultiDataTable(); |
| | | this.bindingSource1.DataSource = _dt; |
| | | this.bindingSource1.ResetBindings(false); |
| | | this.gridView1.RefreshData(); |
| | | overlay.Close(); |
| | | } |
| | | |
| | | |