Ooui-tws-port/Ooui/Anchor.cs

18 lines
302 B
C#

using System;
namespace Ooui
{
public class Anchor : Element
{
public string HRef {
get => GetStringAttribute ("href", "");
set => SetAttributeProperty ("href", value);
}
public Anchor ()
: base ("a")
{
}
}
}