8 references to SortMemberPath
PresentationFramework (2)
src\Framework\System\Windows\Controls\DataGrid.cs (1)
7208string sortPropertyName = column.SortMemberPath;
src\Framework\System\Windows\Controls\DataGridTemplateColumn.cs (1)
46if (string.IsNullOrEmpty(templateColumn.SortMemberPath))
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (6)
151!string.IsNullOrEmpty(column.SortMemberPath) && 152!MemberPathToColumnDict.ContainsKey(column.SortMemberPath)) 154MemberPathToColumnDict.Add(column.SortMemberPath, column); 171else if (description.PropertyName == this.dataGrid.Columns[0].SortMemberPath) 177this.dataGrid.Items.SortDescriptions.Add(new SortDescription(e.Column.SortMemberPath, direction)); 181this.dataGrid.Items.SortDescriptions.Add(new SortDescription(this.dataGrid.Columns[0].SortMemberPath, ListSortDirection.Ascending));