21 lines
448 B
C#
21 lines
448 B
C#
|
using System;
|
|||
|
using Ooui.Forms;
|
|||
|
using Ooui.Forms.Renderers;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Internals;
|
|||
|
|
|||
|
|
|||
|
[assembly: ExportRenderer (typeof (Button), typeof (ButtonRenderer))]
|
|||
|
|
|||
|
namespace Ooui.Forms
|
|||
|
{
|
|||
|
[AttributeUsage (AttributeTargets.Assembly, AllowMultiple = true)]
|
|||
|
public sealed class ExportRendererAttribute : HandlerAttribute
|
|||
|
{
|
|||
|
public ExportRendererAttribute (Type handler, Type target)
|
|||
|
: base (handler, target)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|