Releases: thabse/WPFCustomMessageBox
Releases · thabse/WPFCustomMessageBox
v1.1.3
Changes:
- Compatibility for .NET Framework 4
- Set 'WindowStyle' to 'SingleBorderWindow'
Compiling the project with a newer MSBuild version causes weird issues. This release (and the respective nuget package) are compiled with the older MSBuild version (hence the compatibility changes mentioned above).
v1.1.2
v1.1.1
v1.1.0
Changes:
- The Message window is no longer topmost
- The window icon is no longer a transparent icon, but is actually removed and does not take up space anymore
- The
WindowStartupLocation
now falls back toCenterScreen
(fromCenterOwner
) if no owner is provided
Automatically closing Message Boxes
Each CustomMessageBox.Show*
call now has the optional paramaters int? timeout
and MessageBoxResult? timeoutResult
, specifying the timeout in milliseconds after which the message box will close automatically, and the result in case the timeout occurs before the user selects an action.
v1.0.8
Changes:
- Added
System.Windows.Window
Owner parameter for all variants - Changed
WindowStartupLocation
toCenterOwner
- MessageBoxes will be displayed at the center of the owning window (if provided)
- This behavior does not mirror the default MessageBox behavior. The default message box always opens in the center of the screen