-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2065 from Jesus805/master
Added XML Docs to Prism.Wpf - Prism.Services.Dialogs
- Loading branch information
Showing
10 changed files
with
231 additions
and
25 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,14 +1,41 @@ | ||
namespace Prism.Services.Dialogs | ||
{ | ||
/// <summary> | ||
/// The result of the dialog. | ||
/// </summary> | ||
public enum ButtonResult | ||
{ | ||
/// <summary> | ||
/// Abort. | ||
/// </summary> | ||
Abort = 3, | ||
/// <summary> | ||
/// Cancel. | ||
/// </summary> | ||
Cancel = 2, | ||
/// <summary> | ||
/// Ignore. | ||
/// </summary> | ||
Ignore = 5, | ||
/// <summary> | ||
/// No. | ||
/// </summary> | ||
No = 7, | ||
/// <summary> | ||
/// No result returned. | ||
/// </summary> | ||
None = 0, | ||
/// <summary> | ||
/// OK. | ||
/// </summary> | ||
OK = 1, | ||
Retry = 4, | ||
/// <summary> | ||
/// Retry. | ||
/// </summary> | ||
Retry = 4, | ||
/// <summary> | ||
/// Yes. | ||
/// </summary> | ||
Yes = 6 | ||
} | ||
} |
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
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
Oops, something went wrong.