using DevExpress.Utils.Svg; namespace Yw.WinFrmUI { /// /// /// public class HydroMonitorSvgImageHelper { /// /// 对接 /// public static SvgImage Docking { get { if (_docking == null) { _docking = SvgImage.FromStream(new MemoryStream(Yw.WinFrmUI.Hydro.Core.Properties.Resources.monitor_docking)); } return _docking; } } private static SvgImage _docking = null; /// /// 分析 /// public static SvgImage Analyse { get { if (_analyse == null) { _analyse = SvgImage.FromStream(new MemoryStream(Yw.WinFrmUI.Hydro.Core.Properties.Resources.monitor_analyse)); } return _analyse; } } private static SvgImage _analyse = null; } }