DataGrid.CanUserAddRows Property

Definition

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

public bool CanUserAddRows { get; set; }

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

Product Versions
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also