DataGrid.CanUserAddRows Property

Definition

Gets or sets a value that indicates whether the user can add new rows to the DataGrid.

public:
 property bool CanUserAddRows { bool get(); void set(bool value); };
public bool CanUserAddRows { get; set; }
member this.CanUserAddRows : bool with get, set
Public Property CanUserAddRows As Boolean

Property Value

true if the user can add new rows; otherwise, false. The registered default is true. For more information about what can influence the value, see DependencyProperty.

Remarks

When this property is set to true a blank row is displayed at the bottom of the DataGrid. A user can enter a new item into the blank row. Adding a new row adds an item to the ItemsSource. You can set default values for the new item by handling the InitializingNewItem event and setting the values programmatically.

Applies to

See also