private void List_MouseDoubleClick(object sender, MouseButtonEventArgs e) { if (list.SelectedItems.Count > 0) { CadAgendamento janela = new CadAgendamento(); janela.AgendamentoAlteracao = list.SelectedItem as Agendamento; janela.ShowDialog(); AtualizarDataGrid(); } }
private void BtnNovo_Click(object sender, RoutedEventArgs e) { CadAgendamento cadastrar = new CadAgendamento(); cadastrar.ShowDialog(); }