Pagina2.xaml.cs
492 Bytes
using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace medtest
{
public partial class Pagina2 : ContentPage
{
public string Testo { get; set; }
void Parla(object sender, System.EventArgs e)
{
DependencyService.Get<ITextToSpeech>().Speak(Testo);
}
public Pagina2()
{
Testo = "Dimmi qualcosa";
BindingContext = this;
InitializeComponent();
}
}
}