lixiaojun
2024-12-20 357693611c60d93fb17189273d4c91dab364f0d4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using 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
{
    /// <summary>
    /// SvgImageHelper
    /// </summary>
    public class XhsMainSvgImageHelper
    {
        /// <summary>
        /// 首页
        /// </summary>
        public static SvgImage Home
        {
            get
            {
                if (_home == null)
                {
                    _home = SvgImage.FromStream(new MemoryStream(HStation.WinFrmUI.Xhs.Core.Properties.Resources.home));
                }
                return _home;
            }
        }
        private static SvgImage _home = null;
 
 
        /// <summary>
        /// 项目
        /// </summary>
        public static SvgImage Project
        {
            get
            {
                if (_project == null)
                {
                    _project = SvgImage.FromStream(new MemoryStream(HStation.WinFrmUI.Xhs.Core.Properties.Resources.project));
                }
                return _project;
            }
        }
        private static SvgImage _project = null;
 
 
    }
}