-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainWindow.xaml
37 lines (36 loc) · 1.57 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<Window x:Class="LarchSys.Bot.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:LarchSys.Bot"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid Background="#FFEE00">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition Width="Auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
<RowDefinition />
</Grid.RowDefinitions>
<DockPanel Grid.Column="1" Grid.Row="1" Margin="10">
<DockPanel DockPanel.Dock="Top">
<TextBlock TextAlignment="Center" FontSize="20" Margin="0 0 0 8">
Wähle ein Tool
</TextBlock>
</DockPanel>
<DockPanel>
<Button Margin="0 0 10 0" Padding="10" Background="#000" FontSize="18" Foreground="#ffdc00" FontWeight="Black" Click="Herold_OnClick">
HEROLD
</Button>
<Button Padding="10" Background="#ffdc00" Foreground="#000" FontSize="18" FontWeight="Black" Click="GelbeSeiten_OnClick">
Gelbe Seiten
</Button>
</DockPanel>
</DockPanel>
</Grid>
</Window>