using System;
|
using HDL_ON.UI.CSS;
|
using Shared;
|
|
namespace HDL_ON.UI.UI2.PersonalCenter.Visitor
|
{
|
public class VisitorQRCodePage : FrameLayout
|
{
|
/// <summary>
|
/// 顶部title
|
/// </summary>
|
FrameLayout topView;
|
FrameLayout bodyView;
|
|
public VisitorQRCodePage()
|
{
|
Action click = () =>
|
{
|
VisitorHistoryPage page = new VisitorHistoryPage();
|
MainPage.BasePageView.AddChidren(page);
|
page.LoadPage();
|
MainPage.BasePageView.PageIndex = MainPage.BasePageView.ChildrenCount - 1;
|
};
|
|
bodyView.BackgroundColor = CSS_Color.BackgroundColor;
|
new TopViewDiv(bodyView, Language.StringByID(StringId.MemberPermissionManagement)).LoadTopView_SettingText(click, "");
|
|
//
|
}
|
}
|
}
|