Taking More Control in Code
If you need take more control over a data template in code, you can write a class that implements the IDataTemplate interface yourself. This will allow you to present the properties of your bound data type in whatever way you require.
To use the IDataTemplateinterface you must implement the following two members in your data template class:
public bool Match(object data) { ... }- implement this member to check whether the provided bound data matches yourIDataTemplateor not. Return true if the bound data type matches, otherwise false.public Control Build(object param) { ... }- implement this member to build and return the control that will present your data.
Example
This is a simple implementation of the IDataTemplate interface to display some string data in a text block:
using Avalonia.Controls.Templates;
...
public class MyDataTemplate : IDataTemplate
{
public Control Build(object param)
{
return new TextBlock() { Text = (string)param };
}
public bool Match(object data)
{
return data is string;
}
}
You can now use the class MyDataTemplate in your view, like this:
xmlns:dataTemplates="using:MyApp.DataTemplates" -->
...
<ContentControl Content="{Binding MyContent}">
<ContentControl.ContentTemplate>
<dataTemplates:MyDataTemplate />
</ContentControl.ContentTemplate>
</ContentControl>
More Examples
info
Have a look at some more advanced implementations of the IDataTemplate interface in the Avalonia UI sample project here.