Files
video-v1/vav1/Vav1Player/MainWindow.xaml
2025-09-17 04:16:34 +09:00

27 lines
1.4 KiB
XML

<Window x:Class="Vav1Player.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:Vav1Player"
mc:Ignorable="d"
Title="VAV1 Player" Height="600" Width="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Border Grid.Row="0" Background="Black">
<Image x:Name="VideoDisplay" Stretch="Uniform"/>
</Border>
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="10">
<Button x:Name="OpenButton" Content="Open AV1 File" Width="120" Height="30" Click="OpenButton_Click"/>
<Button x:Name="PlayButton" Content="Play" Width="60" Height="30" Margin="10,0,0,0" Click="PlayButton_Click" IsEnabled="False"/>
<Button x:Name="PauseButton" Content="Pause" Width="60" Height="30" Margin="10,0,0,0" Click="PauseButton_Click" IsEnabled="False"/>
<Button x:Name="StopButton" Content="Stop" Width="60" Height="30" Margin="10,0,0,0" Click="StopButton_Click" IsEnabled="False"/>
</StackPanel>
</Grid>
</Window>