From c08d389efd5b368e6926edfc38e610c371485f86 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Fri, 16 Jun 2017 00:02:42 -0700 Subject: [PATCH] Add Label --- Ooui/Label.cs | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Ooui/Label.cs diff --git a/Ooui/Label.cs b/Ooui/Label.cs new file mode 100644 index 0000000..9dcfd7f --- /dev/null +++ b/Ooui/Label.cs @@ -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") + { + } + } +}