コード例 #1
0
ファイル: FirstWindow.cs プロジェクト: meikeric/DotCopter
 private void OnButtonUp(object sender, ButtonEventArgs e)
 {
     // Show a modeless dialog window
     SecondWindow wnd = new SecondWindow();
     wnd.Visibility = Visibility.Visible;
     // Right after showing the window execution immediatelly continues here
 }
コード例 #2
0
        private void OnButtonUp(object sender, ButtonEventArgs e)
        {
            // Show a modeless dialog window
            SecondWindow wnd = new SecondWindow();

            wnd.Visibility = Visibility.Visible;
            // Right after showing the window execution immediatelly continues here
        }