New to Telerik UI for WPFStart a free 30-day trial

Determines which buttons to be visible in a RadDataForm.

Definition

Namespace:Telerik.Windows.Controls.Data.DataForm

Assembly:Telerik.Windows.Controls.Data.dll

Syntax:

C#
[Flags]
public enum DataFormCommandButtonsVisibility

Fields

AddNew button will be visible.

C#
Add = 1

All buttons will be visible.

C#
All = Add | Delete | Edit | Navigation | Commit | Cancel

Cancel button will be visible.

C#
Cancel = 32

Commit button will be visible.

C#
Commit = 16

DeleteButton will be visible.

C#
Delete = 2

Edit button will be visible.

C#
Edit = 4

Collection navigation buttons will be visible.

C#
Navigation = 8

No command buttons will be visible.

C#
None = 0