New file |
| | |
| | | using System; |
| | | using Shared.Common; |
| | | using Shared.R; |
| | | |
| | | namespace Shared.Phone.Device.Logic.LogicView |
| | | { |
| | | public class SaveView |
| | | { |
| | | public FrameLayout frameLayout = new FrameLayout |
| | | { |
| | | Height = Application.GetRealHeight(260), |
| | | BackgroundColor = ZigbeeColor.Current.LogicMiddleBackgroundColor, |
| | | }; |
| | | public Button saveBtn = new Button |
| | | { |
| | | X = Application.GetRealWidth(85), |
| | | Height = Application.GetRealHeight(130), |
| | | Width = Application.GetRealWidth(910), |
| | | Radius = (uint)Application.GetRealHeight(60), |
| | | BackgroundColor = ZigbeeColor.Current.LogicBtnSaveBackgroundColor, |
| | | TextID = MyInternationalizationString.Save, |
| | | TextColor = ZigbeeColor.Current.LogicBtnSaveTextColor, |
| | | TextSize = 16, |
| | | }; |
| | | public Button clickviewBtn = new Button |
| | | { |
| | | Height = Application.GetRealHeight(260), |
| | | }; |
| | | public FrameLayout Show() |
| | | { |
| | | frameLayout.AddChidren(saveBtn); |
| | | frameLayout.AddChidren(clickviewBtn); |
| | | return frameLayout; |
| | | } |
| | | } |
| | | } |