using System;
using Shared.Common;
namespace Shared.Phone.Device.CommonForm
{
public class Line : SelectedStatuButton
{
///
/// Line
///
///
///
///
public Line(int y, int width, int height)
{
Y = y-2;
Width = width;
Height = height;
Radius = (uint)(height / 2);
SelectedBackgroundColor = ZigbeeColor.Current.GXCButtonSelectedColor;
//BackgroundColor = ZigbeeColor.Current.GXCButtonSelectedColor;
Gravity = Gravity.CenterHorizontal;
}
///
/// SetStatu
///
///
public void SetStatu(bool statu)
{
IsSelected = statu;
}
}
}