Advertisement
Dennisaa

xamlspeech01

Feb 9th, 2016
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.45 KB | None | 0 0
  1. <Page
  2.    x:Class="App1.MainPage"
  3.    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4.    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5.    xmlns:local="using:App1"
  6.    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7.    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  8.    mc:Ignorable="d">
  9.  
  10.  
  11.  
  12.     <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
  13.         <RelativePanel>
  14.             <MediaElement x:Name="media" AutoPlay="False"/>
  15.             <TextBox x:Name="textBox1" Text="My Dear Text" Margin="5"/>
  16.             <Button x:Name="blueButton" Margin="5" Background="LightBlue" Content="ButtonRight" RelativePanel.RightOf="textBox1"/>
  17.             <Button x:Name="orangeButton" Click="orangeButton_Click" Margin="5" Background="Orange" Content="ButtonBelow"
  18.                    RelativePanel.RightOf="textBox1" RelativePanel.Below="blueButton"/>
  19.             <Button x:Name="orangeButton2" Click="orangeButton2_Click" Margin="5" Background="Orange" Content="No. click this"
  20.                    RelativePanel.RightOf="orangeButton" />
  21.             <Button x:Name="orangeButton3" Click="orangeButton3_Click" Margin="5" Background="Orange" Content="No. In fact just click this"
  22.                    RelativePanel.RightOf="orangeButton2" />
  23.         </RelativePanel>
  24.     </Grid>
  25. </Page>
  26.  
  27. https://msdn.microsoft.com/en-us/library/windows.media.speechsynthesis.speechsynthesizer.aspx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement