Ooui-tws-port/Samples/Program.cs

42 lines
1.1 KiB
C#

using System;
using Ooui;
namespace Samples
{
class Program
{
static void Main (string[] args)
{
Xamarin.Forms.Forms.Init ();
for (var i = 0; i < args.Length; i++) {
var a = args[i];
switch (args[i]) {
case "-p" when i + 1 < args.Length:
case "--port" when i + 1 < args.Length:
{
int p;
if (int.TryParse (args[i + 1], out p)) {
UI.Port = p;
}
i++;
}
break;
}
}
new ButtonSample().Publish();
new TodoSample().Publish();
new DrawSample().Publish();
new FilesSample().Publish();
var sample = new XamlPageSample();
UI.Publish("/display-alert", sample.CreateElement(new DisplayAlertSample()));
UI.Present ("/display-alert", sample);
Console.ReadLine ();
}
}
}