private void barBtnDashboard_ItemClick(object sender, ItemClickEventArgs e) { if (FormsUtil.isFormDisposedOrNull(_xFrmDashboardList)) { this._xFrmDashboardList = new XFrmDashboardListView(TypeGroupUser.Administrador); } FormsUtil.Show(this._xFrmDashboardList, this); }
internal void CreateDashboard(Usuario currentUser) { if (FormsUtil.isFormDisposedOrNull(_xFrmDashboardList)) { this._xFrmDashboardList = new XFrmDashboardListView((TypeGroupUser)currentUser.IdGrupoUsuario); } FormsUtil.Show(this._xFrmDashboardList, _menu); }