public MainWindow() { this.Hide(); Entrar entrar = new Entrar(); entrar.ShowDialog(); if (UsuarioAutal.Login == null) { this.Close(); return; } this.Show(); _produtosController = new ProdutosController(); _tiposChamadoController = new TiposChamadoController(); _assuntosChamadoController = new AssuntosChamadoController(); _clientesController = new ClientesController(); _funcionariosController = new FuncionariosController(); _usuariosController = new UsuariosController(); _chamadosController = new ChamadosController(); InitializeComponent(); UpdateMenuItemsVisibility(); btnChamados.Background = new SolidColorBrush(Color.FromRgb(90, 90, 90)); UpdateIndexChamados(); chamados.Visibility = Visibility.Visible; this.WindowState = WindowState.Maximized; }
private void BotonLogin_Click(object sender, EventArgs e) { Entrar miForm1 = new Entrar(); this.Hide(); miForm1.ShowDialog(this); this.Dispose(); }