18 lines
339 B
C#
18 lines
339 B
C#
|
using System;
|
|||
|
|
|||
|
using Xamarin.Forms;
|
|||
|
|
|||
|
namespace Samples
|
|||
|
{
|
|||
|
public class XamlPreviewPageSample : ISample
|
|||
|
{
|
|||
|
public string Title => "Xamarin.Forms XAML Editor";
|
|||
|
|
|||
|
public Ooui.Element CreateElement ()
|
|||
|
{
|
|||
|
var page = new XamlPreviewPage ();
|
|||
|
return page.GetOouiElement ();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|