<?xml version="1.0" encoding="UTF-8"?><ContentPagexmlns="http://xamarin.com/schemas/2014/forms"xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"x:Class="SampleApp.Views.Functionality17"><ContentPage.Content><StackLayoutVerticalOptions="Center"HorizontalOptions="CenterAndExpand"><LabelText="This is an example text."Margin="50"x:Name="TextToRead"></Label><StackLayout><LabelText="Change the volume"></Label><SliderMinimum="0.0"Maximum="1.0"ValueChanged="Slider_Volume_ValueChanged"Value="0.5"></Slider></StackLayout><StackLayout><LabelText="Change the pitch"></Label><SliderMinimum="0.1"Maximum="2.0"ValueChanged="Slider_Pitch_ValueChanged"Value="1.0"></Slider></StackLayout><ButtonText="Read the example text"Clicked="Button_Clicked"></Button></StackLayout></ContentPage.Content></ContentPage>