2017-06-18 23:50:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Ooui;
|
|
|
|
|
|
|
|
|
|
namespace Samples
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main (string[] args)
|
|
|
|
|
{
|
2017-11-10 17:57:45 +00:00
|
|
|
|
Xamarin.Forms.Forms.Init ();
|
|
|
|
|
|
2017-06-19 01:42:28 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-17 05:29:35 +00:00
|
|
|
|
new ButtonSample().Publish();
|
|
|
|
|
new TodoSample().Publish();
|
|
|
|
|
new DrawSample().Publish();
|
|
|
|
|
new FilesSample().Publish();
|
2017-06-18 23:50:22 +00:00
|
|
|
|
|
2017-11-17 05:29:35 +00:00
|
|
|
|
var sample = new XamlPageSample();
|
|
|
|
|
UI.Publish("/display-alert", sample.CreateElement(new DisplayAlertSample()));
|
|
|
|
|
|
|
|
|
|
UI.Present ("/display-alert", sample);
|
2017-07-06 22:39:44 +00:00
|
|
|
|
|
2017-06-18 23:50:22 +00:00
|
|
|
|
Console.ReadLine ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|