PropertyGroupDescription 构造函数

定义

初始化 PropertyGroupDescription 类的新实例。

重载

PropertyGroupDescription()

初始化 PropertyGroupDescription 类的新实例。

PropertyGroupDescription(String)

使用指定的属性名称初始化 PropertyGroupDescription 类的新实例。

PropertyGroupDescription(String, IValueConverter)

使用指定的属性名称和转换器初始化 PropertyGroupDescription 类的新实例。

PropertyGroupDescription(String, IValueConverter, StringComparison)

使用指定的参数初始化 PropertyGroupDescription 类的新实例。

PropertyGroupDescription()

初始化 PropertyGroupDescription 类的新实例。

public:
 PropertyGroupDescription();
public PropertyGroupDescription ();
Public Sub New ()

示例

下面的示例演示如何使用此构造函数。

// This groups the items in the view by the property "Category"
PropertyGroupDescription groupDescription = new PropertyGroupDescription();
groupDescription.PropertyName = "Category";
listingDataView.GroupDescriptions.Add(groupDescription);
'This groups by property "Category"
Dim groupDescription As PropertyGroupDescription = New PropertyGroupDescription
groupDescription.PropertyName = "Category"
listingDataView.GroupDescriptions.Add(groupDescription)

有关完整示例,请参阅 数据绑定演示

适用于

PropertyGroupDescription(String)

使用指定的属性名称初始化 PropertyGroupDescription 类的新实例。

public:
 PropertyGroupDescription(System::String ^ propertyName);
public PropertyGroupDescription (string propertyName);
new System.Windows.Data.PropertyGroupDescription : string -> System.Windows.Data.PropertyGroupDescription
Public Sub New (propertyName As String)

参数

propertyName
String

指定项所属的组的属性名称。

适用于

PropertyGroupDescription(String, IValueConverter)

使用指定的属性名称和转换器初始化 PropertyGroupDescription 类的新实例。

public:
 PropertyGroupDescription(System::String ^ propertyName, System::Windows::Data::IValueConverter ^ converter);
public PropertyGroupDescription (string propertyName, System.Windows.Data.IValueConverter converter);
new System.Windows.Data.PropertyGroupDescription : string * System.Windows.Data.IValueConverter -> System.Windows.Data.PropertyGroupDescription
Public Sub New (propertyName As String, converter As IValueConverter)

参数

propertyName
String

指定项所属的组的属性名称。 如果为 null,则将项本身传递到值转换器。

converter
IValueConverter

将应用于属性值或项以生成用于确定项所属组的最终值的 IValueConverter 对象。 转换器可能会返回一个集合,该集合指示项可以出现在多个组中。

适用于

PropertyGroupDescription(String, IValueConverter, StringComparison)

使用指定的参数初始化 PropertyGroupDescription 类的新实例。

public:
 PropertyGroupDescription(System::String ^ propertyName, System::Windows::Data::IValueConverter ^ converter, StringComparison stringComparison);
public PropertyGroupDescription (string propertyName, System.Windows.Data.IValueConverter converter, StringComparison stringComparison);
new System.Windows.Data.PropertyGroupDescription : string * System.Windows.Data.IValueConverter * StringComparison -> System.Windows.Data.PropertyGroupDescription
Public Sub New (propertyName As String, converter As IValueConverter, stringComparison As StringComparison)

参数

propertyName
String

指定项所属的组的属性名称。 如果为 null,则将项本身传递到值转换器。

converter
IValueConverter

将应用于属性值或项以生成用于确定项所属组的最终值的 IValueConverter 对象。 转换器可能会返回一个集合,该集合指示项可以出现在多个组中。

stringComparison
StringComparison

一个 StringComparison 值,该值指定项的值和组的名称之间的比较。

适用于