34 строки
829 B
C#
34 строки
829 B
C#
using System;
|
|
|
|
#if WINDOWS_UWP
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
#else
|
|
|
|
namespace Xamarin.Forms.Platform.WinRT
|
|
#endif
|
|
{
|
|
[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)
|
|
{
|
|
}
|
|
}
|
|
} |