Ooui-tws-port/Samples/Program.cs

45 lines
1.2 KiB
C#
Raw Normal View History

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 23:17:22 +00:00
new ButtonSample ().Publish ();
new TodoSample ().Publish ();
new DrawSample ().Publish ();
new FilesSample ().Publish ();
new DisplayAlertSample ().Publish ();
2017-12-12 20:31:15 +00:00
new DotMatrixClockSample().Publish();
2017-11-26 17:28:47 +00:00
new EditorSample().Publish();
2017-12-12 20:25:56 +00:00
new TipCalcSample().Publish();
2017-12-12 20:43:38 +00:00
new WeatherAppSample().Publish();
2017-12-12 20:22:13 +00:00
new XuzzleSample().Publish();
2017-06-18 23:50:22 +00:00
UI.Present ("/display-alert");
2017-06-18 23:50:22 +00:00
Console.ReadLine ();
}
}
}