lixiaojun
2024-07-11 8d8cd298ab46aee191baf53ff320fd3290d1ec9a
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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation.WinFrmUI
{
    /// <summary>
    /// 页功能项
    /// </summary>
    public class PageFunctionItem
    {
        /// <summary>
        /// 标题
        /// </summary>
        public string Caption { get; set; }
 
        /// <summary>
        /// 显示图片
        /// </summary>
        public Image Image { get; set; }
 
        /// <summary>
        /// 显示SVG图片
        /// </summary>
        public DevExpress.Utils.Svg.SvgImage SvgImage { get; set; }
 
        /// <summary>
        /// 显示的SVG图片大小
        /// </summary>
        public Size SvgImageSize { get; set; }
 
        /// <summary>
        /// 点击事件
        /// </summary>
        public Action Click { get; set; }
 
        /// <summary>
        /// 子项列表
        /// </summary>
        public List<PageFunctionItem> Items { get; set; }
 
    }
}