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> ();
|
|
}
|
}
|