Skip to content

Instantly share code, notes, and snippets.

@Mahno74
Last active May 14, 2021 04:25
Show Gist options
  • Save Mahno74/8d397f4e29d5bd09df3d87e6ebd431a8 to your computer and use it in GitHub Desktop.
Save Mahno74/8d397f4e29d5bd09df3d87e6ebd431a8 to your computer and use it in GitHub Desktop.
WPF Вывод второй формы или окна
//В WPF
private void Button_Click(object sender, RoutedEventArgs e)
{
newWindow nw = new newWindow();
nw.ShowDialog();
}
//В Windows Forms
private void button1_Click(object sender, EventArgs e)
{
using (Form2 f = new Form2())
{
f.ShowDialog();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment