| | |
| | | /// </summary> |
| | | [Category("数据")] |
| | | [DisplayName("池底标高")] |
| | | [IsHydroMarkPro] |
| | | [PropertyOrder(1001)] |
| | | [DisplayUnit("m")] |
| | | [Browsable(true)] |
| | |
| | | /// </summary> |
| | | [Category("数据")] |
| | | [DisplayName("总水头")] |
| | | [IsHydroMarkPro] |
| | | [PropertyOrder(1002)] |
| | | [DisplayUnit("m")] |
| | | [Browsable(true)] |
| | |
| | | this.UpdatePropStatus(nameof(this.HeadPattern), this.Vmo, nameof(this.Vmo.HeadPattern)); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public override void UpdateVmoProperty() |
| | | { |
| | | base.UpdateVmoProperty(); |
| | | this.Vmo.PoolElev = this.PoolElev; |
| | | this.Vmo.UpdatePropStatus(nameof(this.Vmo.PoolElev), this, nameof(this.PoolElev)); |
| | | this.Vmo.Head = this.Head; |
| | | this.Vmo.UpdatePropStatus(nameof(this.Vmo.Head), this, nameof(this.Head)); |
| | | this.Vmo.HeadPattern = this.HeadPattern; |
| | | this.Vmo.UpdatePropStatus(nameof(this.Vmo.HeadPattern), this, nameof(this.HeadPattern)); |
| | | } |
| | | |
| | | |
| | | |