using System;
using Shared.Common;
namespace Shared.Phone.Device.CommonForm
{
///
/// Complete button.
/// 默认文字: 完成
/// 白色字体
/// 蓝色背景
/// 文字居中
/// 默认字号大小
///
public class CompleteButton:Button
{
private readonly int Button_Height = 110;
private readonly int Button_Width = 750;
private readonly int Button_Y = CommonPage.AppRealHeight - 300;
///
/// Initializes a new instance of the class.
///
public CompleteButton()
{
TextID = R.MyInternationalizationString.Complete;
BackgroundColor = ZigbeeColor.Current.GXCButtonBlueColor;
TextColor = ZigbeeColor.Current.GXCTextWhiteColor;
Height = Application.GetRealHeight(Button_Height);
Width = Application.GetRealWidth(Button_Width);
Gravity = Gravity.CenterHorizontal;
Radius = (uint)Application.GetRealHeight(Button_Height/2);
Y = Application.GetRealHeight(Button_Y);
}
}
}