HDL Home App 第二版本 旧平台金堂用 正在使用
黄学彪
2020-01-06 72be4f06a683de33ddd563c8447c39f7f17e5b7d
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
using System;
using Shared.Common;
namespace Shared.Phone.Device.CommonForm
{
    /// <summary>
    /// Rowlayout edit button.
    /// 自定义右滑编辑延时按钮
    /// 默认背景 白色字体 文字居中  默认圆角--CommonPage.BigFormRadius
    /// </summary>
    public class RowLayoutEditButton:Button
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="T:Shared.Phone.Device.CommonForm.RowLayoutEditButton"/> class.
        /// </summary>
        public RowLayoutEditButton()
        {
            BackgroundColor = ZigbeeColor.Current.GXCEditBackGroundColor;
            TextID = R.MyInternationalizationString.Edit;
            TextColor = ZigbeeColor.Current.GXCTextWhiteColor;
            TextAlignment = TextAlignment.Center;
            TextSize = 14;
            //Radius = CommonPage.BigFormRadius;
        }
    }
}