Update MessageBox.cs

This commit is contained in:
NaBian 2019-02-14 11:04:41 +08:00
parent 67219bd62e
commit 1dfa8b0840

View File

@ -1,6 +1,5 @@
using System;
using System.ComponentModel;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
@ -298,7 +297,7 @@ namespace HandyControl.Controls
Owner = ownerWindow,
WindowStartupLocation = ownerIsNull ? WindowStartupLocation.CenterScreen : WindowStartupLocation.CenterOwner,
ShowTitle = true,
Title = caption ?? System.Reflection.Assembly.GetExecutingAssembly().GetName().Name,
Title = caption ?? string.Empty,
Topmost = ownerIsNull,
_messageBoxResult = defaultResult
};