Ooui-tws-port/Samples/ButtonXamlPage.xaml

13 lines
530 B
Plaintext
Raw Normal View History

2017-11-26 15:57:32 +00:00
<?xml version="1.0" encoding="utf-8" ?>
2017-11-16 05:59:40 +00:00
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ButtonXaml.ButtonXamlPage">
<StackLayout Padding="20">
2017-11-26 16:12:28 +00:00
<Label Text="Welcome to Xamarin.Forms!" FontSize="32" FontAttributes="Bold" />
<Entry x:Name="LabelCount" Text="Click Count: 0"/>
<Button Text="Tap for click count!"
Clicked="OnButtonClicked" />
</StackLayout>
</ContentPage>