зеркало из https://github.com/DeGsoft/maui-linux.git
28 строки
759 B
C#
28 строки
759 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
{
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
public sealed class ExportRendererAttribute : HandlerAttribute
|
|
{
|
|
public ExportRendererAttribute(Type handler, Type target) : base(handler, target)
|
|
{
|
|
}
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
public sealed class ExportCellAttribute : HandlerAttribute
|
|
{
|
|
public ExportCellAttribute(Type handler, Type target) : base(handler, target)
|
|
{
|
|
}
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
|
|
public sealed class ExportImageSourceHandlerAttribute : HandlerAttribute
|
|
{
|
|
public ExportImageSourceHandlerAttribute(Type handler, Type target) : base(handler, target)
|
|
{
|
|
}
|
|
}
|
|
} |