using System; using Shared.Common; namespace Shared.Phone.Device.CommonForm { /// /// Rowlayout edit button. /// 自定义右滑编辑延时按钮 /// 默认背景 白色字体 文字居中 默认圆角--CommonPage.BigFormRadius /// public class RowLayoutEditButton:Button { /// /// Initializes a new instance of the class. /// public RowLayoutEditButton() { BackgroundColor = ZigbeeColor.Current.GXCEditBackGroundColor; TextID = R.MyInternationalizationString.Edit; TextColor = ZigbeeColor.Current.GXCTextWhiteColor; TextAlignment = TextAlignment.Center; TextSize = 14; //Radius = CommonPage.BigFormRadius; } } }