2017-11-19 18:49:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2017-11-17 05:29:35 +00:00
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
2017-12-28 20:01:00 +00:00
|
|
|
xmlns:ooui="clr-namespace:Ooui.Forms;assembly=Ooui.Forms"
|
2017-11-19 18:49:17 +00:00
|
|
|
x:Class="Samples.DisplayAlertPage">
|
2017-11-17 05:29:35 +00:00
|
|
|
<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"
|
2017-12-28 20:01:00 +00:00
|
|
|
HorizontalOptions="Center" />
|
|
|
|
<ooui:LinkLabel Text="Link to Xamarin.Forms docs"
|
|
|
|
HRef="https://developer.xamarin.com/guides/xamarin-forms/" />
|
|
|
|
<ooui:LinkView
|
|
|
|
HRef="https://developer.xamarin.com/guides/xamarin-forms/">
|
|
|
|
<BoxView Color="Gray" HeightRequest="16" />
|
|
|
|
</ooui:LinkView>
|
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" />
|
2017-12-10 22:21:49 +00:00
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
<Switch x:Name="switch1" IsToggled="true" />
|
|
|
|
<Switch x:Name="switch2" IsToggled="false" />
|
|
|
|
</StackLayout>
|
2017-11-26 18:32:55 +00:00
|
|
|
<Button Text="Tap to Display Alert"
|
2017-11-17 05:29:35 +00:00
|
|
|
Clicked="OnButtonClicked" />
|
2018-03-23 19:40:51 +00:00
|
|
|
<Label x:Name="status" />
|
2017-11-17 05:29:35 +00:00
|
|
|
</StackLayout>
|
|
|
|
</ContentPage.Content>
|
|
|
|
</ContentPage>
|