зеркало из https://github.com/DeGsoft/maui-linux.git
37 строки
1004 B
C#
37 строки
1004 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Xamarin.Forms.Platform.WPF
|
|
{
|
|
[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)
|
|
{
|
|
}
|
|
}
|
|
}
|