| | |
| | | |
| | | namespace Shared.Phone.Device.CommonForm |
| | | { |
| | | public class ButtonLineForm:FrameLayout |
| | | public class ButtonLineForm : FrameLayout |
| | | { |
| | | /// <summary> |
| | | /// name |
| | |
| | | { |
| | | Width = Width, |
| | | Height = Height - 3, |
| | | TextColor=ZigbeeColor.Current.GXCTextGrayColor4, |
| | | SelectedTextColor=ZigbeeColor.Current.GXCTextDeepBlackColor |
| | | TextColor = ZigbeeColor.Current.GXCTextGrayColor4, |
| | | SelectedTextColor = ZigbeeColor.Current.GXCTextDeepBlackColor, |
| | | TextSize = CommonFormResouce.TextSize |
| | | }; |
| | | AddChidren(NameBtn); |
| | | |
| | | Line = new Line(Height,Width/2,2); |
| | | Line = new Line(Height, Width / 2, 2); |
| | | AddChidren(Line); |
| | | } |
| | | |
| | |
| | | public void SetStatu(bool statu) |
| | | { |
| | | NameBtn.IsSelected = Line.IsSelected = statu; |
| | | NameBtn.TextSize = statu ? CommonFormResouce.TextSize_Selected : CommonFormResouce.TextSize; |
| | | } |
| | | } |
| | | } |