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 | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs b/WinFrmUI/HStation.WinFrmUI.Assets.Core/00-core/AssetsMainSvgImageHelper.cs index cf77173..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 { @@ -365,5 +360,21 @@ } 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