From 28e1c9f3b620567acced4730cc36368090a6abe5 Mon Sep 17 00:00:00 2001
From: cloudflight <cloudflight@126.com>
Date: 星期六, 15 六月 2024 12:56:50 +0800
Subject: [PATCH] feat:添加右上角视角辅助栏

---
 Hydraulic/Hydro.MapView/MapViewNetWork.cs |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Hydraulic/Hydro.MapView/MapViewNetWork.cs b/Hydraulic/Hydro.MapView/MapViewNetWork.cs
index 35f3a13..1e761f2 100644
--- a/Hydraulic/Hydro.MapView/MapViewNetWork.cs
+++ b/Hydraulic/Hydro.MapView/MapViewNetWork.cs
@@ -33,6 +33,9 @@
         private NodeViewModelList _nodes = new NodeViewModelList();
         public NodeViewModelList Nodes { get { return _nodes; }set { base.Nodes = _nodes = value; } }
 
+        private List<AreaViewModel> _areas = new List<AreaViewModel>();
+        public List<AreaViewModel> Areas { get { return _areas; } set {  _areas = value; } }
+
         public NodeViewModel StartPoint { get; set; }
 
         public NodeViewModel EndPoint { get; set; }

--
Gitblit v1.9.3