Statistiques
| Branche: | Révision:

teotestbluetooth / TestTeoBluetooth / TestTeoBluetooth / MainPage.xaml @ 4ca686e8

Historique | Voir | Annoter | Télécharger (1,158 ko)

1
<?xml version="1.0" encoding="utf-8" ?>
2
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
3
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
4
             x:Class="TeoTestBluetooth.MainPage">
5

    
6
    <StackLayout>
7
        <Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
8
            <Label Text="Welcome to Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/>
9
        </Frame>
10
        <Label Text="Start developing now" FontSize="Title" Padding="30,10,30,10"/>
11
        <Label Text="Make changes to your XAML file and save to see your UI update in the running app with XAML Hot Reload. Give it a try!" FontSize="16" Padding="30,0,30,0"/>
12
        <Label FontSize="16" Padding="30,24,30,0">
13
            <Label.FormattedText>
14
                <FormattedString>
15
                    <FormattedString.Spans>
16
                        <Span Text="Learn more at "/>
17
                        <Span Text="https://aka.ms/xamarin-quickstart" FontAttributes="Bold"/>
18
                    </FormattedString.Spans>
19
                </FormattedString>
20
            </Label.FormattedText>
21
        </Label>
22
    </StackLayout>
23

    
24
</ContentPage>