Пример #1
0
 /// <summary>
 /// 显示
 /// </summary>
 public void Show()
 {
     if (m_RootUI == null)
     {
         return;
     }
     m_RootUI.SetActive(true);
     m_userView.Show();
 }
Пример #2
0
        public UserPresenter(IKernel kernel, IUserView view, IUser_sUpdateService user_SUpdateService, UserProfiler userProfiler)
        {
            this.kernel              = kernel;
            this.view                = view;
            this.userProfiler        = userProfiler;
            this.user_SUpdateService = user_SUpdateService;
            this.user_SUpdateService.ChangeSelectedUser(userProfiler.Id);

            view.Show();
        }
Пример #3
0
 public void Run()
 {
     userForm.Show();
     compForm.Show();
     logForm.Show();
 }
Пример #4
0
 public virtual void Show()
 {
     m_UserView.Show();
 }