コード例 #1
0
 private void barBtnDashboard_ItemClick(object sender, ItemClickEventArgs e)
 {
     if (FormsUtil.isFormDisposedOrNull(_xFrmDashboardList))
     {
         this._xFrmDashboardList = new XFrmDashboardListView(TypeGroupUser.Administrador);
     }
     FormsUtil.Show(this._xFrmDashboardList, this);
 }
コード例 #2
0
 internal void CreateDashboard(Usuario currentUser)
 {
     if (FormsUtil.isFormDisposedOrNull(_xFrmDashboardList))
     {
         this._xFrmDashboardList = new XFrmDashboardListView((TypeGroupUser)currentUser.IdGrupoUsuario);
     }
     FormsUtil.Show(this._xFrmDashboardList, _menu);
 }