DataGrid.CanUserSortColumns Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether the user can sort columns by clicking the column header.
public:
property bool CanUserSortColumns { bool get(); void set(bool value); };
public bool CanUserSortColumns { get; set; }
member this.CanUserSortColumns : bool with get, set
Public Property CanUserSortColumns As Boolean
Property Value
true
if the user can sort the columns; otherwise, false
. The registered default is true
. For more information about what can influence the value, see DependencyProperty.
Remarks
You can set this sorting behavior for individual columns by setting the DataGridColumn.CanUserSort property. If the DataGridColumn.CanUserSort property and the DataGrid.CanUserSortColumns property are both set, a value of false
takes precedence over a value of true
.