| | |
| | | using DevExpress.Utils; |
| | | using DevExpress.Utils.Design; |
| | | using DevExpress.Utils.DragDrop; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraTreeList; |
| | | using DevExpress.XtraTreeList.Nodes; |
| | | using HStation.Vmo; |
| | | using System.ComponentModel; |
| | | using System.Windows.Media.Imaging; |
| | | using Yw; |
| | | |
| | | namespace HStation.WinFrmUI |
| | |
| | | private void treeList1_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e) |
| | | { |
| | | var vm = this.treeList1.GetDataRecordByNode(e.Node) as AssetsValveSeriesMgrViewModel; |
| | | this.FocusedChangedEvent?.Invoke(vm.Vmo); |
| | | if (vm != null) |
| | | { |
| | | this.FocusedChangedEvent?.Invoke(vm.Vmo); |
| | | } |
| | | } |
| | | |
| | | //刷新 |