private AppController()
 {
     MsgCenter.RegistSelf(this, new Dictionary <AllAppMsg, Action <MsgBase>[]>
     {
         { AllAppMsg.AppLoadComplete, new Action <MsgBase>[] { GetLanguage <MsgBase> } },
         { AllAppMsg.ChangeLanguage, new Action <MsgBase>[] { GetDataText <MsgBase> } },
     });
 }
Esempio n. 2
0
 private FrameController()
 {
     MsgCenter.RegistSelf(this, new Dictionary <AllAppMsg, Action <MsgBase>[]>
     {
         { AllAppMsg.LoadFrame, new Action <MsgBase>[] { LoadTemplate <MsgBase> } },
         { AllAppMsg.FrameLoadComplete, new Action <MsgBase>[] { GetTempleteText <MsgBase>, StartLoadPanelStruct <MsgBase> } },
     });
 }