speech
This commit is contained in:
25
PacticeSolution/Speech/MainWindow.xaml
Normal file
25
PacticeSolution/Speech/MainWindow.xaml
Normal file
@@ -0,0 +1,25 @@
|
||||
<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>
|
Reference in New Issue
Block a user