Ooui-tws-port/Ooui/Anchor.cs

36 lines
703 B
C#

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