Last active
May 14, 2021 04:25
-
-
Save Mahno74/8d397f4e29d5bd09df3d87e6ebd431a8 to your computer and use it in GitHub Desktop.
WPF Вывод второй формы или окна
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//В 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