/// <summary> /// Handles the Click event of the btnArtiest control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="RoutedEventArgs"/> instance containing the event data.</param> private void btnArtiest_Click(object sender, RoutedEventArgs e) { artiestOverzicht a = new artiestOverzicht(); a.Show(); this.Close(); }
/// <summary> /// Handles the Closing event of the Window control. /// </summary> /// <param name="sender">The source of the event.</param> /// <param name="e">The <see cref="System.ComponentModel.CancelEventArgs"/> instance containing the event data.</param> private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) { artiestOverzicht ao = new artiestOverzicht(); ao.Show(); }
private void btnArtiest_Click(object sender, RoutedEventArgs e) { artiestOverzicht a = new artiestOverzicht(); a.ShowDialog(); }