using System;
|
using System.Collections.Generic;
|
using ZigBee.Device;
|
|
namespace Shared.Phone.UserCenter
|
{
|
/// <summary>
|
/// 个人中心的Resourse
|
/// </summary>
|
public class UserCenterResourse
|
{
|
/// <summary>
|
/// 当前已经打开了的画面(继承于UserCenterCommonForm才能使用)。
|
/// 画面打开时,会自动追击,画面关闭时,自动移除。
|
/// Key:画面的ID,列如:UserMainForm
|
/// </summary>
|
public static Dictionary<string, UserCenterCommonForm> DicActionForm = new Dictionary<string, UserCenterCommonForm>();
|
/// <summary>
|
/// 密码长度
|
/// </summary>
|
public static int PasswordLength = 6;
|
/// <summary>
|
/// 用户登录的信息缓存,切换到个人中心主界面时,就会刷新
|
/// </summary>
|
public static UserInformation UserInfo = new UserInformation();
|
/// <summary>
|
/// 当前正在操作的画面ID(此变量对临时断网时,非常重要,没人会懂它为何要存在)
|
/// </summary>
|
public static string NowActionFormID = string.Empty;
|
/// <summary>
|
/// 当前打开的全部画面ID
|
/// </summary>
|
public static List<string> listActionFormId = new List<string>();
|
/// <summary>
|
/// 接受网关在线状态推送的界面
|
/// </summary>
|
public static List<UserCenterCommonForm> listGatewayOnlinePushForm = new List<UserCenterCommonForm>();
|
/// <summary>
|
/// 前一次的住宅ID,这个东西是给UserCenterLogic.InitUserCenterMenmoryAndThread()用的
|
/// </summary>
|
public static string oldHomeStringId = string.Empty;
|
/// <summary>
|
/// 前一次的登录账号,这个东西是给UserCenterLogic.InitUserCenterMenmoryAndThread()用的
|
/// </summary>
|
public static string oldAccountId = string.Empty;
|
/// <summary>
|
/// 本地根目录路径
|
/// </summary>
|
public static string LocalRootPath = string.Empty;
|
}
|
}
|