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