From 02c14c9c57dbde72d9c771bd8b0fab1cd023047d Mon Sep 17 00:00:00 2001 From: cloudflight <cloudflight@126.com> Date: 星期一, 13 一月 2025 09:09:22 +0800 Subject: [PATCH] 上下游纵断面分析 --- WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs | 39 +++++++++++++++++++++++++++++++++------ 1 files changed, 33 insertions(+), 6 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs b/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs index db36798..4acd162 100644 --- a/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs +++ b/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs @@ -1,10 +1,5 @@ 锘縰sing DevExpress.Utils.Svg; -using System; -using System.Collections.Generic; using System.IO; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace HStation.WinFrmUI { @@ -270,7 +265,7 @@ private static SvgImage _translation = null; /// <summary> - /// Pump + /// 姘存车 /// </summary> public static SvgImage Pump { @@ -349,5 +344,37 @@ } private static SvgImage _compressor = null; + /// <summary> + /// 绯绘暟 + /// </summary> + public static SvgImage Factor + { + get + { + if (_factor == null) + { + _factor = SvgImage.FromStream(new MemoryStream(HStation.WinFrmUI.Assets.Core.Properties.Resources.factor)); + } + return _factor; + } + } + private static SvgImage _factor = null; + + /// <summary> + /// 鏇茬嚎 + /// </summary> + public static SvgImage Curve + { + get + { + if (_curve == null) + { + _curve = SvgImage.FromStream(new MemoryStream(HStation.WinFrmUI.Assets.Core.Properties.Resources.curve)); + } + return _curve; + } + } + private static SvgImage _curve = null; + } } -- Gitblit v1.9.3