private void ConfigDisplayExecuted()
        {
            AdminLoginNotification notification = new AdminLoginNotification();
            
            notification.AdminName = this._adminInfo.Name;
            notification.AdminNameInput = this._adminInfo.Name;
            notification.AdminPassword = this._adminInfo.Password;
            notification.Title = "管理员登录";

            this.AdminLoginRequest.Raise(notification, GetAdminLoginCallBack, CancelAdminLoginCallBack);

        }
 private void GetAdminLoginCallBack(AdminLoginNotification a)
 {
     ConfigNotification notification = new ConfigNotification();
     this.ConfigRequest.Raise(notification, GetConfigCallBack, CancelConfigCallBack);
 }