Visual Studio / WPF > Form > link > ShowModal()するときはOwnerプロパティ設定をお忘れなく


動作環境
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community

Formから別のFormを表示するときに使うShowModal()。
ShowModal()関連で見つけた以下において
https://stackoverflow.com/questions/499294/how-do-make-modal-dialog-in-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もきちんと表示される。