52 lines
2.5 KiB
XML
52 lines
2.5 KiB
XML
<Window x:Class="Pen_Paper_Main.SitzungVerwalten"
|
|
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:Pen_Paper_Main"
|
|
mc:Ignorable="d"
|
|
Title="SitzungVerwalten" Height="450" Width="800">
|
|
|
|
<DockPanel Background="LightBlue">
|
|
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="35" FontWeight="Bold">Sitzungen</TextBlock>
|
|
|
|
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
|
|
VerticalAlignment="Center" HorizontalAlignment="Center" >
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition></ColumnDefinition>
|
|
|
|
<ColumnDefinition></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<TextBlock Grid.Row="0" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Sitzung erstellen</TextBlock>
|
|
|
|
<TextBlock Grid.Row="0" Grid.Column="1" FontSize="15" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Sitzung beitreten</TextBlock>
|
|
|
|
<TextBox Grid.Row="1" Grid.Column="0" FontSize="15" HorizontalAlignment="Center" Foreground="LightGray"
|
|
VerticalAlignment="Center" Margin="10">Titel eingeben</TextBox>
|
|
|
|
<Button Grid.Row="2" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Margin="15">Sitzung erstellen</Button>
|
|
|
|
<TextBox Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" Foreground="LightGray"
|
|
VerticalAlignment="Center" >Code eingeben</TextBox>
|
|
|
|
<Button Grid.Row="2" Grid.Column="1" FontSize="15" HorizontalAlignment="Center"
|
|
VerticalAlignment="Center" Margin="15">Sitzung beitreten</Button>
|
|
|
|
|
|
</Grid>
|
|
</Border>
|
|
</DockPanel>
|
|
</Window>
|