DataGridColumn.CanUserSort Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Gets or sets a value that indicates whether the user can sort the column by clicking the column header.
Namespace: System.Windows.Controls
Assembly: System.Windows.Controls.Data (in System.Windows.Controls.Data.dll)
Syntax
'Declaration
Public Property CanUserSort As Boolean
public bool CanUserSort { get; set; }
<sdk:dataGridColumn CanUserSort="bool"/>
XAML Values
- sdk:dataGridColumn
Typically, sdk:DataGridTextColumn, sdk:DataGridCheckBoxColumn, or sdk:DataGridTemplateColumn.
Property Value
Type: System.Boolean
true if the user can sort the column; false if the user cannot sort the column. The default is the current DataGrid.CanUserSortColumns property value.
Remarks
If the DataGridColumn.CanUserSort property and the DataGrid.CanUserSortColumns property are both set, a value of false will take precedence over a value of true.
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also