Ooui-tws-port/Ooui/Button.cs

14 lines
223 B
C#
Raw Normal View History

2017-06-12 19:09:09 +00:00
using System;
namespace Ooui
{
public class Button : Element
{
string name = "";
public string Name {
get => name;
set => SetProperty (ref name, value);
}
}
}