DataGridColumn::CanUserSort Property

 

Gets or sets a value that indicates whether the user can sort the column by clicking the column header.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
property bool CanUserSort {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

You can set this sorting behavior for all columns by setting the DataGrid::CanUserSortColumns 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.

.NET Framework
Available since 4.0
Silverlight
Available since 2.0
Return to top
Show: