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
という名前で追加して、以下のように実装する。
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();
}
}
}
<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>
<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();
}
Ownerプロパティ設定した場合
private void uxOpen_Click(object sender, RoutedEventArgs e)
{
SubWindow sb = new SubWindow();
sb.Owner = this; // これ大切
sb.ShowDialog();
}
MainWindowもきちんと表示される。
Author And Source
この問題について(Visual Studio / WPF > Form > link > ShowModal()するときはOwnerプロパティ設定をお忘れなく), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/7d85f1225bab34b9c966著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .