SortDescription.PropertyName 属性

定义

获取或设置要用作排序条件的属性名称。

public:
 property System::String ^ PropertyName { System::String ^ get(); void set(System::String ^ value); };
public string PropertyName { get; set; }
member this.PropertyName : string with get, set
Public Property PropertyName As String

属性值

默认值为 null。

注解

此属性应是基础集合中项的公共属性。

字符串由排序中涉及的特定 ICollectionView 对象解释。 BindingListCollectionView 仅支持简单列名。 ListCollectionView 支持一般属性路径 和 XPath (对于 XML 数据)。 因此,当视图是 ListCollectionView 对象时,可以根据这些节点的属性对 中的 XmlDataProvider XML 节点进行排序。 例如,如果属性名称为 Cost,则为 PropertyName 中的 SortDescription指定“@Cost”。

适用于