Add Label
This commit is contained in:
parent
ea3d5cdd97
commit
c08d389efd
|
@ -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")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue