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>
확인 절차
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도 제대로 표시된다.
Reference
이 문제에 관하여(Visual Studio/WPF > Form > link > ShowModal() 할 때 Owner 속성 설정을 잊지 마세요.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/7d85f1225bab34b9c966텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)