2017-12-28 20:01:00 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ooui
|
|
|
|
|
{
|
|
|
|
|
public class Anchor : Element
|
|
|
|
|
{
|
|
|
|
|
public string HRef {
|
2018-02-02 02:43:23 +00:00
|
|
|
|
get => GetStringAttribute ("href", "");
|
|
|
|
|
set => SetAttributeProperty ("href", value);
|
2017-12-28 20:01:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Anchor ()
|
|
|
|
|
: base ("a")
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|