Ooui-tws-port/Ooui/FormControl.cs

14 lines
242 B
C#
Raw Normal View History

2017-06-13 07:03:01 +00:00
using System;
namespace Ooui
{
public abstract class FormControl : Element
{
string name = "";
public string Name {
get => name;
set => SetProperty (ref name, value, "name");
}
}
}