| | |
| | | { |
| | | InitializeComponent(); |
| | | this.layoutControl1.SetupLayoutControl(); |
| | | this.gridView1.SetNormalView(); |
| | | this.sidePanel1.Visible = false; |
| | | InitialChart(); |
| | | } |
| | | |
| | |
| | | public event Action RefreshDataEvent; |
| | | |
| | | |
| | | public event Action<Yw.Ahart.CubicCurve, Yw.Ahart.CubicCurve, Yw.Ahart.CubicCurve> RefreshCurveEvent; |
| | | |
| | | /// <summary> |
| | | /// 清空 |
| | | /// </summary> |
| | |
| | | _xyDiagram.EnableAxisYScrolling = false; |
| | | |
| | | this.chartControl1.EndInit(); |
| | | |
| | | this.RefreshCurveEvent?.Invoke(null, null, null); |
| | | } |
| | | |
| | | /// <summary> |
| | |
| | | |
| | | |
| | | |
| | | this.RefreshCurveEvent?.Invoke(curveUpperPressure, curveLowerPressure, curveAveragePressure); |
| | | } |
| | | |
| | | |