private void BtnLivros_Click(object sender, RoutedEventArgs e) { WinLivros JanelaLivros = new WinLivros(); this.Close(); JanelaLivros.Show(); }
private void BtnEditar_Click(object sender, RoutedEventArgs e) { Application.Current.Windows[0].Close(); WinLivros JanelaLivros = new WinLivros(_editLivro); JanelaLivros.Show(); this.Close(); }