private void List_MouseDoubleClick(object sender, MouseButtonEventArgs e) { if (list.SelectedItems.Count > 0) { CadCliente janela = new CadCliente(); //item preencher o item selecionado janela.ClienteAlteracao = list.SelectedItem as Cliente; //abre a janela janela.ShowDialog(); AtualizarDataGrid(); } }
private void BtnNovo_Click(object sender, RoutedEventArgs e) { CadCliente cadastrar = new CadCliente(); cadastrar.ShowDialog(); }