Ooui-tws-port/Ooui/Label.cs

19 lines
316 B
C#
Raw Normal View History

2017-06-16 07:02:42 +00:00
using System;
namespace Ooui
{
public class Label : Element
{
Element htmlFor = null;
public Element For {
get => htmlFor;
set => SetProperty (ref htmlFor, value, "htmlFor");
}
public Label ()
: base ("label")
{
}
}
}