using DTS.Common.Interactivity; using System.Windows; namespace DTS.Common.Dialogs { /// /// Represents an interaction request used for confirmations. /// public class ConfirmationEx : Confirmation { /// /// Gets or sets the type of buttons displayed in the confirmation window. /// public MessageBoxButton Buttons { get; set; } = MessageBoxButton.OKCancel; /// /// Gets or sets the type of image displayed in the confirmation window. /// public MessageBoxImage Image { get; set; } = MessageBoxImage.Question; /// /// Returns result of the confirmation window. /// public MessageBoxResult Result { get; set; } } }