A cross-platform UI framework for .NET
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
2.2 KiB

// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.
using System.Linq;
using Avalonia.LogicalTree;
namespace Avalonia.Controls.Templates
{
/// <summary>
/// Defines extension methods for working with <see cref="IDataTemplate"/>s.
/// </summary>
public static class DataTemplateExtensions
{
/// <summary>
/// Find a data template that matches a piece of data.
/// </summary>
/// <param name="control">The control searching for the data template.</param>
/// <param name="data">The data.</param>
/// <param name="primary">
/// An optional primary template that can will be tried before the DataTemplates in the
/// tree are searched.
/// </param>
/// <returns>The data template or null if no matching data template was found.</returns>
public static IDataTemplate FindDataTemplate(
this IControl control,
object data,
IDataTemplate primary = null)
{
if (primary?.Match(data) == true)
{
return primary;
}
foreach (var i in control.GetSelfAndLogicalAncestors().OfType<IDataTemplateHost>())
{
if (i.IsDataTemplatesInitialized)
{
foreach (IDataTemplate dt in i.DataTemplates)
{
if (dt.Match(data))
{
return dt;
}
}
}
}
IGlobalDataTemplates global = AvaloniaLocator.Current.GetService<IGlobalDataTemplates>();
if (global != null)
{
if (global.IsDataTemplatesInitialized)
{
foreach (IDataTemplate dt in global.DataTemplates)
{
if (dt.Match(data))
{
return dt;
}
}
}
}
return null;
}
}
}