mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-04-19 23:03:49 +02:00
18 lines
392 B
C#
18 lines
392 B
C#
using System.Linq;
|
|
using System.Windows;
|
|
|
|
namespace Dialogs
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für MessageBoxView.xaml
|
|
/// </summary>
|
|
public partial class MessageBoxView
|
|
{
|
|
public MessageBoxView()
|
|
{
|
|
InitializeComponent();
|
|
Owner = Application.Current.Windows.OfType<Window>().FirstOrDefault(x => x.IsActive);
|
|
}
|
|
}
|
|
}
|