TextEdit.ShowDefaultButtons Property
In This Article
Gets or sets whether the editor’s default buttons are displayed. This is a dependency property.
Namespace: DevExpress.WinUI.Editors
Assembly: DevExpress.WinUI.Editors.v23.2.dll
NuGet Package: DevExpress.WinUI
#Declaration
[DP(true, Handler = "OnShowDefaultButtonsChanged")]
public bool ShowDefaultButtons { get; set; }
#Property Value
Type | Description |
---|---|
Boolean | true, to display the editor’s default buttons; otherwise, false. |
#Remarks
Use the ShowDefaultButtons property to control whether the default button that relates to an editor’s functionality (such as the clear button of a TextEdit) is displayed within the editor.
Custom buttons whose ButtonInfo.IsDefault property is set to true are not affected by the ShowDefaultButtons property.
See Also