Answers for "how to add extra window to wpf"

0

how to add extra window to wpf

private void Button_Click(object sender, RoutedEventArgs e)
{
    window2 win2 = new window2();
    win2.Show();
}
Posted by: Guest on March-23-2021

Code answers related to "how to add extra window to wpf"

Browse Popular Code Answers by Language