зеркало из https://github.com/DeGsoft/maui-linux.git
32 строки
901 B
C#
32 строки
901 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) : this(handler, target, null)
|
|
{
|
|
}
|
|
|
|
public ExportRendererAttribute(Type handler, Type target, Type[] supportedVisuals) : base(handler, target, supportedVisuals)
|
|
{
|
|
}
|
|
}
|
|
|
|
[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)
|
|
{
|
|
}
|
|
}
|
|
} |