| | |
| | | this.comboBoxPackages.EditValue = model.PackageID; |
| | | this.imageComboBoxConnectionType.EditValue = model.ConnectionType; |
| | | this.textEditConnectionAddress.EditValue = model.ConnectionAddress; |
| | | this.textEditMaxHeight.EditValue = model.MaxHeight; |
| | | } |
| | | |
| | | //获取文本信息 |
| | |
| | | _facilityVmo.ConnectionType = (PBS.eConnectionType)this.imageComboBoxConnectionType.EditValue; |
| | | } |
| | | _facilityVmo.ConnectionAddress = this.textEditConnectionAddress.Text; |
| | | if (this.textEditMaxHeight.EditValue != null) |
| | | { |
| | | double.TryParse(this.textEditMaxHeight.Text, out double maxHeight); |
| | | _facilityVmo.MaxHeight = maxHeight; |
| | | } |
| | | return _facilityVmo; |
| | | } |
| | | } |