зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
355 B
C#
15 строки
355 B
C#
namespace Xamarin.Forms
|
|
{
|
|
internal static class DataTemplateExtensions
|
|
{
|
|
public static object CreateContent(this DataTemplate self, object item, BindableObject container)
|
|
{
|
|
var selector = self as DataTemplateSelector;
|
|
if (selector != null)
|
|
{
|
|
self = selector.SelectTemplate(item, container);
|
|
}
|
|
return self.CreateContent();
|
|
}
|
|
}
|
|
} |