We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f350b5c commit ce28b5fCopy full SHA for ce28b5f
1 file changed
src/ItemsSource/ColumnSortDescription.cs
@@ -22,7 +22,7 @@ public ColumnSortDescription(TableViewColumn column,
22
public override object? GetPropertyValue(object? item)
23
{
24
// Use reflection-based property access when SortMemberPath is explicitly provided; otherwise, fall back to column cell content.
25
- if (!string.IsNullOrEmpty(PropertyName))
+ if (!string.IsNullOrEmpty(Column.SortMemberPath))
26
27
return base.GetPropertyValue(item);
28
}
0 commit comments