DataTemplateKey Constructors

Definition

Initializes a new instance of the DataTemplateKey class.

Overloads

DataTemplateKey()

Initializes a new instance of the DataTemplateKey class.

DataTemplateKey(Object)

Initializes a new instance of the DataTemplateKey class with the specified type.

DataTemplateKey()

Initializes a new instance of the DataTemplateKey class.

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

Remarks

When constructed without a data type, you must specify DataType as a property.

Applies to

DataTemplateKey(Object)

Initializes a new instance of the DataTemplateKey class with the specified type.

public:
 DataTemplateKey(System::Object ^ dataType);
public DataTemplateKey (object dataType);
new System.Windows.DataTemplateKey : obj -> System.Windows.DataTemplateKey
Public Sub New (dataType As Object)

Parameters

dataType
Object

The type for which this template is designed. This is either a Type (to indicate that the DataTemplate is used to display items of the given type), or a string (to indicate that the DataTemplate is used to display XmlNode elements with the given tag name).

Applies to