<Window xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="600"
x:Class="XCoderAv.Views.AudioDeviceWindow"
Title="声卡选择器" Width="800" Height="600"
WindowStartupLocation="CenterOwner">
<Window.Styles>
<Style Selector="TextBox.ConfigTextBox">
<Setter Property="Margin" Value="2"/>
<Setter Property="Height" Value="26"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="BorderBrush" Value="#D0D0D0"/>
</Style>
<Style Selector="Button.ActionButton">
<Setter Property="Height" Value="30"/>
<Setter Property="Margin" Value="2"/>
</Style>
<Style Selector="Border.GroupBorder">
<Setter Property="BorderBrush" Value="#D0D0D0"/>
<Setter Property="BorderThickness" Value="1"/>
<Setter Property="Margin" Value="0,0,0,6"/>
</Style>
</Window.Styles>
<Grid Margin="6">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- 选择设备 -->
<Border Grid.Row="0" Classes="GroupBorder">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="音频设备" VerticalAlignment="Center" Margin="4,2"/>
<ComboBox Grid.Column="1" ItemsSource="{Binding DeviceList}" SelectedIndex="{Binding SelectedDeviceIndex}" Height="28" Margin="2"/>
<Button Grid.Column="2" Content="刷新" Command="{Binding RefreshDevicesCommand}" Classes="ActionButton" Width="60"/>
<Button Grid.Column="3" Content="测试播放" Command="{Binding TestPlaybackCommand}" Classes="ActionButton" Width="80"/>
</Grid>
</Border>
<!-- 设备详情 -->
<Border Grid.Row="1" Classes="GroupBorder" Padding="4">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Text="设备详情" FontWeight="Bold" Margin="4,2"/>
<TextBox Grid.Row="1" Text="{Binding DeviceDetail}" AcceptsReturn="True" MinHeight="120"
FontFamily="Consolas" FontSize="12"
BorderThickness="1" BorderBrush="#D0D0D0"/>
</Grid>
</Border>
<!-- 日志 -->
<TextBox Grid.Row="2" Text="{Binding Log}" AcceptsReturn="True" AcceptsTab="True"
FontFamily="Consolas" FontSize="12" Margin="0,4"
BorderThickness="1" BorderBrush="#D0D0D0"/>
</Grid>
</Window>
|