namespace WPFluent; /// /// Set of properties used when creating a new simple content dialog. /// public class SimpleContentDialogCreateOptions { /// /// Gets or sets the name of the button that closes the content dialog. /// public required string CloseButtonText { get; set; } /// /// Gets or sets a message displayed in the content dialog. /// public required object Content { get; set; } /// /// Gets or sets the default text of the primary button at the bottom of the content dialog. If not added, or /// , it will not be displayed. /// public string PrimaryButtonText { get; set; } = string.Empty; /// /// Gets or sets the default text of the secondary button at the bottom of the content dialog. If not added, /// or , it will not be displayed. /// public string SecondaryButtonText { get; set; } = string.Empty; /// /// Gets or sets a name at the top of the content dialog. /// public required string Title { get; set; } }