-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
204 additions
and
75 deletions.
There are no files selected for viewing
112 changes: 71 additions & 41 deletions
112
Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonMessageBox.cs
Large diffs are not rendered by default.
Oops, something went wrong.
85 changes: 60 additions & 25 deletions
85
Source/Krypton Components/Krypton.Toolkit/Controls Visuals/KryptonMessageBoxForm.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
Source/Krypton Components/Krypton.Toolkit/Utilities/General.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#region BSD 3-Clause License | ||
// ***************************************************************************** | ||
// BSD 3-Clause License (https://github.com/Krypton-Suite/Standard-Toolkit) | ||
// by Peter Wagner(aka Wagnerp) & Simon Coghlan(aka Smurf-IV), et al. 2017 - 2022. All rights reserved. | ||
// Version 6.0.0 | ||
// ***************************************************************************** | ||
#endregion | ||
|
||
namespace Krypton.Toolkit | ||
{ | ||
public enum KryptonMessageBoxDefaultButton | ||
{ | ||
Button1, | ||
Button2, | ||
Button3, | ||
Button4 | ||
} | ||
} |