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