You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
<Window x:Class="Speech.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:Speech"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="300" Width="300">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Button x:Name="speechButton" Grid.Row="0" Content="Speech!" VerticalAlignment="Center" HorizontalAlignment="Center"
|
|
Click="speechButton_Click"/>
|
|
<StackPanel Grid.Row="1">
|
|
<ToggleButton x:Name="recognizeButton" Content="Recognize!" HorizontalAlignment="Center"
|
|
Click="recognizeButton_Click"/>
|
|
<TextBox x:Name="recognizeBox" Height="50"
|
|
IsReadOnly="True"
|
|
TextWrapping="Wrap"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|
|
|