Class MessageBoxOption
Represents message box response options.
public class MessageBoxOption
- Inheritance
-
MessageBoxOption
- Inherited Members
Constructors
MessageBoxOption(string, bool, bool)
Creates new instance of MessageBoxOption.
public MessageBoxOption(string title, bool isDefault = false, bool isCancel = false)
Parameters
Properties
IsCancel
Gets or sets value indicating whether this is option to cancel the request.
public bool IsCancel { get; set; }
Property Value
IsDefault
Gets or sets value indicating whether this is default option.
public bool IsDefault { get; set; }
Property Value
Title
Gets or sets title of response option.
public string Title { get; set; }