2021-09-23 17:30:38 +12:00
|
|
|
<Window x:Class="Audio_Router_WPF.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:Audio_Router_WPF"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Title="MainWindow" Height="450" Width="800">
|
2021-09-23 19:21:08 +12:00
|
|
|
<Grid VerticalAlignment="Stretch">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
<RowDefinition/>
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.Background>
|
|
|
|
<SolidColorBrush Color="#CC000000" />
|
|
|
|
</Grid.Background>
|
|
|
|
<StackPanel x:Name="SourceFlyout" Margin="20,30,20,20" Grid.RowSpan="1" VerticalAlignment="Stretch">
|
|
|
|
<TextBlock Text="Input Audio Device:" TextWrapping="Wrap" Margin="0,10,0,0" Foreground="White" HorizontalAlignment="Center"/>
|
|
|
|
<ComboBox x:Name="InputAudioComboBox" MinWidth="500" HorizontalAlignment="Center"/>
|
|
|
|
<TextBlock Text="Output Audio Device:" TextWrapping="Wrap" Margin="0,10,0,0" Foreground="White" HorizontalAlignment="Center"/>
|
|
|
|
<ComboBox x:Name="OutputAudioComboBox" MinWidth="500" HorizontalAlignment="Center"/>
|
|
|
|
<CheckBox x:Name="LowLatencyCheckbox" Content="Low Latency Mode (Reduces audio quality)" HorizontalAlignment="Center" Margin="0,10,0,0"/>
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,20,0,5">
|
|
|
|
<Button x:Name="AddAudioGraphButton" Content="Add Audio Graph" HorizontalContentAlignment="Center" Background="#54FFFFFF" Click="AddAudioGraphButton_Click"/>
|
|
|
|
</StackPanel>
|
|
|
|
</StackPanel>
|
|
|
|
<ScrollViewer Grid.Row="1" Margin="10,5,10,5" Padding="0,0,10,0">
|
|
|
|
<StackPanel x:Name="CreatedGraphs"/>
|
2021-09-23 17:30:38 +12:00
|
|
|
|
2021-09-23 19:21:08 +12:00
|
|
|
</ScrollViewer>
|
2021-09-23 17:30:38 +12:00
|
|
|
</Grid>
|
|
|
|
</Window>
|