Add Image

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

18
Ooui/Image.cs Normal file
View File

@ -0,0 +1,18 @@
using System;
namespace Ooui
{
public class Image : Element
{
string src = "";
public string Source {
get => src;
set => SetProperty (ref src, value ?? "", "src");
}
public Image ()
: base ("img")
{
}
}
}