using System; using System.Collections.Generic; using ZigBee.Device; namespace Shared.Phone.UserCenter { /// /// 个人中心的Resourse /// public class UserCenterResourse { /// /// 当前已经打开了的画面(继承于UserCenterCommonForm才能使用)。 /// 画面打开时,会自动追击,画面关闭时,自动移除。 /// Key:画面的ID,列如:UserMainForm /// public static Dictionary DicActionForm = new Dictionary(); /// /// 成员列表的信息 /// public static List ListMemberInfo = new List(); /// /// 当前正在操作的画面ID(此变量对临时断网时,非常重要,没人会懂它为何要存在) /// public static string NowActionFormID = string.Empty; /// /// 当前打开的全部画面ID /// public static List listActionFormId = new List(); /// /// 用户登录的信息缓存,切换到个人中心主界面时,就会刷新 /// public static UserInformation UserInfo = new UserInformation(); /// /// 账号的设置信息 /// public static AccountOption Option = new AccountOption(); } }