1
wxr
2023-03-31 7e42cc13a14b7de31c9f5d5c61cdf24f3246335d
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;
 
namespace Shared
{
    [System.Serializable]
    public class CustomViewObj
    {
        public List<CustomButtonObj> ButtonList;
 
    }
 
    [System.Serializable]
    public class CustomButtonObj
    {
        public int X;
 
        public int Y;
 
        public int Width;
 
        public int Height;
 
        public int Text;
 
        public string BackgroungImage;
        /// <summary>
        /// 是否边框
        /// </summary>
        public bool Border = false;
        /// <summary>
        /// 是否圆角
        /// </summary>
        public bool Radius = false;
 
        /// <summary>
        /// 命令
        /// </summary>
        public int Command;
        /// <summary>
        /// 发送的附加数据
        /// </summary>
        public List<byte> SendBytes = new List<byte> ();
 
    }
}