Ooui-tws-port/Ooui/Label.cs

18 lines
304 B
C#

using System;
namespace Ooui
{
public class Label : Element
{
public Element For {
get => GetAttribute<Element> ("for", null);
set => SetAttributeProperty ("for", value);
}
public Label ()
: base ("label")
{
}
}
}