maui-linux/Xamarin.Forms.Platform.WPF/ICellRenderer.cs

14 строки
269 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Xamarin.Forms.Platform.WPF
{
public interface ICellRenderer : IRegisterable
{
System.Windows.DataTemplate GetTemplate(Cell cell);
}
}