Table of Contents

Class SimpleContentDialogCreateOptions

Namespace
Wpf.Ui
Assembly
Wpf.Ui.dll

Set of properties used when creating a new simple content dialog.

public class SimpleContentDialogCreateOptions
Inheritance
SimpleContentDialogCreateOptions
Inherited Members

Properties

CloseButtonText

Gets or sets the name of the button that closes the content dialog.

public required string CloseButtonText { get; set; }

Property Value

string

Content

Gets or sets a message displayed in the content dialog.

public required object Content { get; set; }

Property Value

object

PrimaryButtonText

Gets or sets the default text of the primary button at the bottom of the content dialog.

If not added, or Empty, it will not be displayed.

public string PrimaryButtonText { get; set; }

Property Value

string

SecondaryButtonText

Gets or sets the default text of the secondary button at the bottom of the content dialog.

If not added, or Empty, it will not be displayed.

public string SecondaryButtonText { get; set; }

Property Value

string

Title

Gets or sets a name at the top of the content dialog.

public required string Title { get; set; }

Property Value

string