qin
2024-06-04 77ab118a04eb43da0ce07b2f22d4a4bc82f04a7f
Hydraulic/Hydro.MapView/Model/MeterViewModel.cs
@@ -1,8 +1,11 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing.Design;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.ComponentModel.TypeConverter;
namespace Hydro.MapView
{
@@ -14,5 +17,11 @@
            if (string.IsNullOrEmpty(PatternID)) PatternID = "";
            return $"{ID}\t{Elev}\t{Demand}\t{PatternID}\t;\t";
        }
        [Category("基本信息")]
        [DisplayName("当量模板")]
        [Editor(typeof(DlTemplateEditor),typeof(UITypeEditor))]
        [Browsable(true)]
        public string DlTemplateID { get; set; }
    }
}