Ooui-tws-port/Ooui.Forms/Controls/LinkView.cs

21 lines
529 B
C#
Raw Normal View History

using System;
using Xamarin.Forms;
namespace Ooui.Forms
{
public class LinkView : ContentView
{
public static readonly BindableProperty HRefProperty = BindableProperty.Create ("HRef", typeof (string),
typeof (LinkView), string.Empty, BindingMode.OneWay, null, null, null, null);
public string HRef {
get { return (string)base.GetValue (HRefProperty); }
set { base.SetValue (HRefProperty, value); }
}
public LinkView ()
{
}
}
}