temp/Views/AgentWindow.axaml

18 lines
969 B
Plaintext
Raw Normal View History

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="using:app.ViewModels"
x:DataType="vm:MainWindowViewModel"
x:Class="app.Views.AgentWindow">
<StackPanel>
<TextBlock Text="Deepgram Voice Agent" HorizontalAlignment="Center" VerticalAlignment="Center"/>
<Grid ShowGridLines="False" Margin="5" ColumnDefinitions="Auto, Auto" RowDefinitions="Auto, Auto, Auto, Auto">
<ToggleButton Grid.Row="0" Grid.Column="0" Command="{Binding ToggleConversation}">
<Panel>
<TextBlock Classes="start" Text="Start Listening"/>
<TextBlock Classes="stop" Text="Stop Listening"/>
</Panel>
</ToggleButton>
<Button Grid.Row="1" Grid.Column="0" Command="{Binding OpenConfig}">Edit Configuration</Button>
</Grid>
</StackPanel>
</UserControl>