| | |
| | | /// <summary> |
| | | /// 更新属性 |
| | | /// </summary> |
| | | public override void Update() |
| | | public override void UpdateProperty() |
| | | { |
| | | base.Update(); |
| | | base.UpdateProperty(); |
| | | this.CurrentPress = this.Vmo.CurrentPress; |
| | | this.UpdatePropStatus(nameof(this.CurrentPress), this.Vmo, nameof(this.Vmo.CurrentPress)); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public override void UpdateVmoProperty() |
| | | { |
| | | base.UpdateVmoProperty(); |
| | | this.Vmo.CurrentPress = this.CurrentPress; |
| | | this.Vmo.UpdatePropStatus(nameof(this.Vmo.CurrentPress), this, nameof(this.CurrentPress)); |
| | | } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 更新计算属性 |