using System;
using Shared.Common;
namespace Shared.Phone.Device.CommonForm
{
///
/// Complete button.
/// 默认文字: 完成
/// 白色字体
/// 黑色背景
/// 文字居中
/// 默认字号大小
///
public class CompleteButton:Button
{
///
/// CompleteButton
///
///
///
///
public CompleteButton(int y, int width, int height)
{
this.Y = Application.GetRealHeight(y);
this.Width = Application.GetRealWidth(width);
this.Height = Application.GetRealHeight(height);
TextID = R.MyInternationalizationString.Complete;
BackgroundColor = ZigbeeColor.Current.GXCButtonBlackSelectedColor;
TextColor = ZigbeeColor.Current.GXCTextWhiteColor;
IsBold = true;
TextSize = 16;
Gravity = Gravity.CenterHorizontal;
Radius = (uint)Application.GetRealHeight(height / 2);
}
///
/// SetTitle
///
///
public void SetTitle(string title)
{
Text = title;
}
///
/// SetTitle
///
///
public void SetTitle(int title)
{
SetTitle(Language.StringByID(title));
}
}
}