Functionality17.xaml 1.02 KB
Newer Older
Mattia's avatar
Mattia committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="SampleApp.Views.Functionality17">
    <ContentPage.Content>
        <StackLayout VerticalOptions="Center" HorizontalOptions="CenterAndExpand">
            <Label Text="This is an example text." Margin="50" x:Name="TextToRead"></Label>

            <StackLayout>
                <Label Text="Change the volume"></Label>
                <Slider Minimum="0.0" Maximum="1.0" ValueChanged="Slider_Volume_ValueChanged" Value="0.5"></Slider>                
            </StackLayout>
            <StackLayout>
                <Label Text="Change the pitch"></Label>
                <Slider Minimum="0.1" Maximum="2.0" ValueChanged="Slider_Pitch_ValueChanged" Value="1.0"></Slider>                
            </StackLayout>
            <Button Text="Read the example text" Clicked="Button_Clicked"></Button>
        </StackLayout>
        
    </ContentPage.Content>
</ContentPage>