DataTemplate Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DataTemplate class.
Overloads
DataTemplate() |
Initializes a new instance of the DataTemplate class. |
DataTemplate(Object) |
Initializes a new instance of the DataTemplate class with the specified DataType property. |
DataTemplate()
Initializes a new instance of the DataTemplate class.
public:
DataTemplate();
public DataTemplate ();
Public Sub New ()
Applies to
DataTemplate(Object)
Initializes a new instance of the DataTemplate class with the specified DataType property.
public:
DataTemplate(System::Object ^ dataType);
public DataTemplate (object dataType);
new System.Windows.DataTemplate : obj -> System.Windows.DataTemplate
Public Sub New (dataType As Object)
Parameters
- dataType
- Object
If the template is intended for object data, this is the Type name of the data object.
Remarks
To refer to the Type name of the class, use the x:Type Markup Extension. If the template is intended for XML data, this is the string that represents the tag name of the data.