messageboxex_projects_visua.../Daten/MessageBoxExDemo/Backup/MessageBoxExLib/TimeoutResult.cs
2020-11-26 10:41:55 +01:00

30 lines
860 B
C#

using System;
namespace Utils.MessageBoxExLib
{
/// <summary>
/// Enumerates the kind of results that can be returned when a
/// message box times out
/// </summary>
public enum TimeoutResult
{
/// <summary>
/// On timeout the value associated with the default button is set as the result.
/// This is the default action on timeout.
/// </summary>
Default,
/// <summary>
/// On timeout the value associated with the cancel button is set as the result. If
/// the messagebox does not have a cancel button then the value associated with
/// the default button is set as the result.
/// </summary>
Cancel,
/// <summary>
/// On timeout MessageBoxExResult.Timeout is set as the result.
/// </summary>
Timeout
}
}