54 lines
3.3 KiB
Plaintext
54 lines
3.3 KiB
Plaintext
|
<Window x:Class="lab2.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:lab2"
|
||
|
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 Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Выбрать видео</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Пуск</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Пауза</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Вкл. звук</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Выкл. звук</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Рестарт</TextBlock>
|
||
|
</Button>
|
||
|
<Button Margin="5" Foreground="Black" BorderBrush="Black" BorderThickness="2" Background="#FF8DECC3">
|
||
|
<TextBlock TextWrapping="Wrap" FontFamily="Bahnschrift">Очистить</TextBlock>
|
||
|
</Button>
|
||
|
</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>
|
||
|
</Window>
|