Visual Studio/WPF > Form > link > ShowModal() 할 때 Owner 속성 설정을 잊지 마세요.

운영 환경
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community

Form에서 다른 Form을 표시할 때 사용하는 ShowModal().
ShowModal() 관련에서 찾은 아래에서
h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 499294 / 호 w - 마케 - 모다 l - 아 아 g - wpf

Don't forget to set the Owner property on the dialog window. Otherwise, the user will get weird behavior when Alt+Tabbing, etc. – Edward Brey Apr 26 '10 at 15:38

신경이 쓰였다.

코드



창(WPF)을 SubWindow라는 이름으로 추가하여 다음과 같이 구현한다.

MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace _170612_t1650_showmodal
{
    /// <summary>
    /// MainWindow.xaml の相互作用ロジック
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void uxOpen_Click(object sender, RoutedEventArgs e)
        {
            SubWindow sb = new SubWindow();
            sb.Owner = this; // これ大切
            sb.ShowDialog();
        }
    }
}


Mainwindow.xaml
<Window x:Class="_170612_t1650_showmodal.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:_170612_t1650_showmodal"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Button x:Name="uxOpen" Click="uxOpen_Click" Height="28" Width="100"
                Content="Open"/>
    </Grid>
</Window>


SubWindow.xaml
<Window x:Class="_170612_t1650_showmodal.SubWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:_170612_t1650_showmodal"
        mc:Ignorable="d"
        Title="SubWindow" Height="300" Width="300">
    <Grid>

    </Grid>
</Window>

확인 절차


  • Open 버튼을 눌러 SubWindow를 표시합니다.
  • Alt+Tab을 눌러 다른 앱을 표시합니다.
  • Alt+Tab에서 이 앱으로 돌아가기

  • Owner 속성 설정 잊어버린 경우


            private void uxOpen_Click(object sender, RoutedEventArgs e)
            {
                SubWindow sb = new SubWindow();
                //sb.Owner = this; // これ大切
                sb.ShowDialog();
            }
    
    

    SubWindow 만 표시됩니다.


    Owner 속성을 설정한 경우


            private void uxOpen_Click(object sender, RoutedEventArgs e)
            {
                SubWindow sb = new SubWindow();
                sb.Owner = this; // これ大切
                sb.ShowDialog();
            }
    
    

    MainWindow도 제대로 표시된다.

    좋은 웹페이지 즐겨찾기