DataTemplate Class

Definition

A template for multiple bindings, commonly used by ListViews and MultiPage<T>s.

public ref class DataTemplate : Microsoft::Maui::Controls::ElementTemplate, Microsoft::Maui::Controls::Internals::IDataTemplateController
public class DataTemplate : Microsoft.Maui.Controls.ElementTemplate, Microsoft.Maui.Controls.Internals.IDataTemplateController
type DataTemplate = class
    inherit ElementTemplate
    interface IDataTemplateController
Public Class DataTemplate
Inherits ElementTemplate
Implements IDataTemplateController
Inheritance
DataTemplate
Derived
Implements

Remarks

In XAML, application developers can nest markup inside a DataTemplate tag to create a View whose members are bound to the properties of data objects that are contained in a ItemsSource list.

Constructors

DataTemplate()

For internal use only.

DataTemplate(Func<Object>)

Creates and initializes a new instance of the DataTemplate class.

DataTemplate(Type)

Creates a new DataTemplate for type type.

Properties

Bindings

Gets a dictionary of bindings, indexed by the bound properties.

LoadTemplate (Inherited from ElementTemplate)
Values

Returns a dictionary of property values for this DataTemplate, indexed by property.

Methods

CreateContent()

Used by the XAML infrastructure to load data templates and set up the content of the resulting UI.

(Inherited from ElementTemplate)
SetBinding(BindableProperty, BindingBase)

Sets the binding for property.

SetValue(BindableProperty, Object)

Sets the value of property.

Explicit Interface Implementations

IDataTemplateController.Id
IDataTemplateController.IdString

Extension Methods

CreateContent(DataTemplate, Object, BindableObject)

For internal use by the Microsoft.Maui.Controls platform.

SelectDataTemplate(DataTemplate, Object, BindableObject)

For internal use by the Microsoft.Maui.Controls platform.

SetBinding(DataTemplate, BindableProperty, String)

Binds the self object's targetProperty to a new Binding instance that was created with path.

Applies to