61 lines
2.7 KiB
XML
61 lines
2.7 KiB
XML
<Window x:Class="lab3.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:lab3"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
|
|
<Grid Background="#FF8DECC3">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="2*"/>
|
|
<RowDefinition Height="10*"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="5*"/>
|
|
<ColumnDefinition Width="1*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<Border BorderBrush="Black" BorderThickness="4" Grid.Column="2" Grid.Row="0" Grid.RowSpan="1">
|
|
<Image Source="/free-icon-clover-6365303.png"/>
|
|
</Border>
|
|
<Border BorderBrush="Black" BorderThickness="4" Grid.Column="2" Grid.Row="1" Grid.RowSpan="1">
|
|
<StackPanel Margin="0,20,0,0">
|
|
<Button Click="LoadVideoButton_Click">
|
|
<TextBlock>Выбрать видео</TextBlock>
|
|
</Button>
|
|
<Button Click="StartButton_Click">
|
|
<TextBlock>Пуск</TextBlock>
|
|
</Button>
|
|
<Button Click="PauseButton_Click">
|
|
<TextBlock>Пауза</TextBlock>
|
|
</Button>
|
|
<Button>
|
|
<TextBlock>Вкл. звук</TextBlock>
|
|
</Button>
|
|
<Button>
|
|
<TextBlock>Выкл. звук</TextBlock>
|
|
</Button>
|
|
<Button>
|
|
<TextBlock>Рестарт</TextBlock>
|
|
</Button>
|
|
<Button>
|
|
<TextBlock>Очистить</TextBlock>
|
|
</Button>
|
|
<Canvas Height="100"/>
|
|
</StackPanel>
|
|
</Border>
|
|
<Border BorderBrush="Black" BorderThickness="4" Grid.Column="0" Grid.Row="0" Grid.RowSpan="1" Grid.ColumnSpan="2">
|
|
<TextBlock TextWrapping="Wrap" TextAlignment="Center" FontSize="18" FontFamily="Bahnschrift" VerticalAlignment="Center">Лютий видеохостинг</TextBlock>
|
|
</Border>
|
|
<Border BorderBrush="Black" BorderThickness="4" Grid.Column="0" Grid.Row="1" Grid.RowSpan="1" Grid.ColumnSpan="2">
|
|
|
|
</Border>
|
|
<Grid x:Name="videoPanel" Grid.Column="0" Grid.Row="1" Grid.RowSpan="1" Grid.ColumnSpan="1">
|
|
<!-- Сюда будет загружено видео -->
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|