ContentDialog.IsPrimaryButtonEnabled Property
Definition
Gets or sets whether the dialog's primary button is enabled.
Equivalent WinUI property: Microsoft.UI.Xaml.Controls.ContentDialog.IsPrimaryButtonEnabled.
public:
property bool IsPrimaryButtonEnabled { bool get(); void set(bool value); };
bool IsPrimaryButtonEnabled();
void IsPrimaryButtonEnabled(bool value);
public bool IsPrimaryButtonEnabled { get; set; }
var boolean = contentDialog.isPrimaryButtonEnabled;
contentDialog.isPrimaryButtonEnabled = boolean;
Public Property IsPrimaryButtonEnabled As Boolean
<ContentDialog IsPrimaryButtonEnabled="bool"/>
Property Value
True if the primary button of the dialog is enabled; Otherwise, false.