Skip to content

Releases: thabse/WPFCustomMessageBox

v1.1.3

31 Mar 15:19
Compare
Choose a tag to compare

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

31 Mar 14:10
Compare
Choose a tag to compare

Changes:

  • Removed the WindowStyle which was causing issues with globally applied custom window styles

v1.1.1

31 Mar 12:44
Compare
Choose a tag to compare

Changes:

  • Added a global option CustomMessageBox.RemoveTitleBarIcon to enable/disable the removal of the title bar icon

v1.1.0

31 Mar 09:54
Compare
Choose a tag to compare

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 to CenterScreen (from CenterOwner) 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

31 Mar 09:48
Compare
Choose a tag to compare

Changes:

  • Added System.Windows.Window Owner parameter for all variants
  • Changed WindowStartupLocation to CenterOwner
    • 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