childwindow

  1. A

    Question Naming and Saving Child Windows

    Hi, I am studying C#/WPF. I am trying to create child windows upon click event as follows private void NewWindow(object sender, RoutedEventArgs e) { Window newWindow = new Window(); newWindow.Owner = this; newWindow.Title = "Window 1"...
Back
Top Bottom