-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
16 lines (16 loc) · 1.31 KB
/
MainWindow.xaml
File metadata and controls
16 lines (16 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="DeepGram_Sample_Project.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:DeepGram_Sample_Project"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<Button Content="Pick Audio File" HorizontalAlignment="Left" Margin="40,30,0,0" VerticalAlignment="Top" Click="Button_Click"/>
<TextBox Name="tb_fileName" HorizontalAlignment="Left" Margin="150,28,0,0" TextWrapping="Wrap" Text="insert audio file" VerticalAlignment="Top" Width="450" Height="28"/>
<TextBox Name="tbb_response" HorizontalAlignment="Left" Margin="40,100,0,0" TextWrapping="Wrap" Text="Response will appear here" VerticalAlignment="Top" Height="300" Width="715" ScrollViewer.CanContentScroll="True" />
<Button Content="Translate Audio to Text" HorizontalAlignment="Left" Margin="40,60,0,0" VerticalAlignment="Top" Click="Button_Click_1"/>
<Button Content="Test Web Sample - Bueller?" HorizontalAlignment="Left" Margin="630,32,0,0" VerticalAlignment="Top" Click="Button_Click_2"/>
</Grid>
</Window>