2017-12-12 20:31:15 +00:00
|
|
|
|
using Ooui;
|
|
|
|
|
using Xamarin.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Samples
|
|
|
|
|
{
|
|
|
|
|
public class DotMatrixClockSample : ISample
|
|
|
|
|
{
|
|
|
|
|
public string Title => "Xamarin.Forms DoMatrixClock";
|
2018-09-02 04:56:35 +00:00
|
|
|
|
public string Path => "/dotmatrixclock";
|
2017-12-12 20:31:15 +00:00
|
|
|
|
|
|
|
|
|
public Ooui.Element CreateElement()
|
|
|
|
|
{
|
|
|
|
|
var page = new DotMatrixClock.DotMatrixClockPage();
|
|
|
|
|
return page.GetOouiElement();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Publish()
|
|
|
|
|
{
|
2018-09-02 04:56:35 +00:00
|
|
|
|
UI.Publish(Path, CreateElement);
|
2017-12-12 20:31:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|