DataGrid.CanUserReorderColumns Property

Definition

Gets or sets a value that indicates whether the user can change the column display order by dragging column headers with the mouse.

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

Property Value

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

Remarks

You can set this reorder behavior for individual columns by setting the DataGridColumn.CanUserReorder property. If the DataGridColumn.CanUserReorder property and the DataGrid.CanUserReorderColumns property are both set, a value of false will take precedence over a value of true.

Columns can be frozen by setting the FrozenColumnCount property greater than 0. Frozen columns are always the leftmost columns in display order. You cannot drag frozen columns into the group of unfrozen columns or drag unfrozen columns into the group of frozen columns.

Applies to

See also