Ooui-tws-port/Ooui.Forms/Exports.cs

21 lines
448 B
C#
Raw Normal View History

2017-11-09 06:21:05 +00:00
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)
{
}
}
}