33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Window x:Class="ModuleManager.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:ModuleManager"
|
|
xmlns:vlc="clr-namespace:LibVLCSharp.WPF;assembly=LibVLCSharp.WPF"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid Name="MaiGrid" ShowGridLines="True">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="200"></ColumnDefinition>
|
|
<ColumnDefinition></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition Height="50"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<!--top pannel-->
|
|
<DockPanel Grid.Column="1">
|
|
|
|
</DockPanel>
|
|
<!--Categorien-->
|
|
<DockPanel Name="Categorien" Grid.Row="1">
|
|
|
|
</DockPanel>
|
|
<Button Grid.Row="2" Content="Settings"></Button>
|
|
|
|
<vlc:VideoView Grid.Column="1" Grid.Row="1" Grid.RowSpan="2"></vlc:VideoView>
|
|
</Grid>
|
|
</Window>
|