Ooui-tws-port/Samples/DisplayAlertPage.xaml

17 lines
731 B
Plaintext
Raw Normal View History

2017-11-19 18:49:17 +00:00
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
2017-11-19 18:49:17 +00:00
x:Class="Samples.DisplayAlertPage">
<ContentPage.Content>
<StackLayout>
2017-12-09 22:43:48 +00:00
<Label Text="Welcome to DisplayAlert Sample!" FontSize="32" FontAttributes="Bold" Margin="10,10,10,50"
HorizontalOptions="Center"/>
2017-11-26 17:28:26 +00:00
<ActivityIndicator x:Name="activity" />
2017-11-26 17:43:52 +00:00
<ProgressBar x:Name="progress" />
2017-11-26 18:32:55 +00:00
<DatePicker x:Name="datePicker" />
<Button Text="Tap to Display Alert"
Clicked="OnButtonClicked" />
</StackLayout>
</ContentPage.Content>
</ContentPage>