using System;
|
using HDL_ON.UI.UI2.Intelligence.Automation.LogicView;
|
using Shared;
|
using System.Collections.Generic;
|
using System.Text;
|
namespace HDL_ON.UI.UI2.PersonalCenter.PirDevice.View
|
{
|
public class ReplicationView
|
{
|
FrameLayout fLayout = new FrameLayout
|
{
|
Height = Application.GetRealHeight(667),
|
BackgroundColor = CSS.CSS_Color.viewMiddle,
|
};
|
/// <summary>
|
///
|
/// </summary>
|
public void Show(FrameLayout frame)
|
{
|
#region 界面布局
|
frame.AddChidren(fLayout);
|
PirDevice.View.TopView topView = new View.TopView();
|
topView.topNameBtn.TextID = StringId.fuzhiyaokonggongnneg;
|
fLayout.AddChidren(topView.FLayoutView());
|
topView.clickBackBtn.MouseUpEventHandler += (sender, e) => { RemView(); };
|
FrameLayout frameLayout = new FrameLayout();
|
frameLayout.Height = Application.GetRealHeight(667 - 64);
|
frameLayout.Y = Application.GetRealHeight(64);
|
// frameLayout.BackgroundColor = CSS.CSS_Color.textWhiteColor;
|
fLayout.AddChidren(frameLayout);
|
var textBtn = new Button
|
{
|
Y = Application.GetRealHeight(24),
|
X = Application.GetRealWidth(10),
|
Width = Application.GetRealWidth(375 - 20),
|
Height = Application.GetRealHeight(28),//
|
TextSize = TextSize.text14,
|
TextColor = CSS.CSS_Color.textColor,
|
TextAlignment = TextAlignment.Center,
|
TextID = StringId.duizhunanxiaanniu,
|
IsMoreLines=true,
|
};
|
frameLayout.AddChidren(textBtn);
|
|
var icon1Btn = new Button
|
{
|
Y = Application.GetRealHeight(91),
|
X = Application.GetRealWidth((375 - 149) / 2),
|
Width = Application.GetRealWidth(149),
|
Height = Application.GetRealHeight(95),
|
UnSelectedImagePath = "PirIcon/icon1.png",
|
};
|
frameLayout.AddChidren(icon1Btn);
|
var icon2Btn = new Button
|
{
|
Y = Application.GetRealHeight(289),
|
X = Application.GetRealWidth(122),
|
Width = Application.GetRealWidth(182),
|
Height = Application.GetRealHeight(314),
|
UnSelectedImagePath = "PirIcon/icon2.png",
|
};
|
frameLayout.AddChidren(icon2Btn);
|
#endregion
|
|
}
|
/// <summary>
|
/// 移除当前界面
|
/// </summary>
|
public void RemView()
|
{
|
fLayout.RemoveFromParent();
|
}
|
}
|
}
|