DataGrid.CanUserResizeColumns Property

Definition

Gets or sets a value that indicates whether the user can adjust the width of columns by using the mouse.

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

Property Value

true if the user can adjust the column width; otherwise, false. The registered default is true. For more information about what can influence the value, see DependencyProperty.

Remarks

This property does not affect whether column widths can be changed programmatically, such as by changing the DataGridColumn.Width property.

You can set this resize behavior for individual columns by setting the DataGridColumn.CanUserResize property. If the DataGridColumn.CanUserResize property and the DataGrid.CanUserResizeColumns property are both set, a value of false takes precedence over a value of true.

Applies to