2017-06-16 07:02:42 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Ooui
|
|
|
|
{
|
|
|
|
public class Label : Element
|
|
|
|
{
|
|
|
|
public Element For {
|
2018-02-02 02:43:23 +00:00
|
|
|
get => GetAttribute<Element> ("for", null);
|
|
|
|
set => SetAttributeProperty ("for", value);
|
2017-06-16 07:02:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Label ()
|
|
|
|
: base ("label")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|