Remove old button sample

This commit is contained in:
Frank A. Krueger 2017-11-16 00:03:44 -06:00
parent f550c55e90
commit b3ec5a0be6
2 changed files with 1 additions and 57 deletions

View File

@ -29,9 +29,8 @@ namespace Samples
new TodoSample ().Publish ();
new DrawSample ().Publish ();
new FilesSample ().Publish ();
new XamarinFormsSample ().Publish ();
UI.Present ("/xamarin-forms");
UI.Present ("/todo");
Console.ReadLine ();
}

View File

@ -1,55 +0,0 @@
using System;
using Xamarin.Forms;
using Ooui.Forms;
namespace Samples
{
public class XamarinFormsSample : ISample
{
public string Title => "Xamarin.Forms Button Counter";
Page MakePage ()
{
var countLabel = new Label {
Text = "0",
BackgroundColor = Color.Gold,
HorizontalOptions = LayoutOptions.Center,
};
var countButton = new Button {
Text = "Increase",
HorizontalOptions = LayoutOptions.FillAndExpand,
};
countButton.Clicked += (sender, e) => {
var v = int.Parse (countLabel.Text);
countLabel.Text = (v + 1).ToString ();
};
return new ContentPage {
Content = new StackLayout {
BackgroundColor = Color.Khaki,
Children = {
new Label {
Text = "Hello World!",
FontSize = 32,
HorizontalOptions = LayoutOptions.Center,
},
countLabel,
countButton,
},
},
};
}
public void Publish ()
{
var page = MakePage ();
page.Publish ("/xamarin-forms-shared");
Ooui.UI.Publish ("/xamarin-forms", () => MakePage ().GetOouiElement ());
}
public Ooui.Element CreateElement ()
{
return MakePage ().GetOouiElement ();
}
}
}