Add Label

This commit is contained in:
Frank A. Krueger 2017-06-16 00:02:42 -07:00
parent ea3d5cdd97
commit c08d389efd
1 changed files with 18 additions and 0 deletions

18
Ooui/Label.cs Normal file
View File

@ -0,0 +1,18 @@
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")
{
}
}
}