37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<Window x:Class="PenAndPaperFinal_Final.Charakter"
|
|
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:PenAndPaperFinal_Final"
|
|
mc:Ignorable="d"
|
|
Title="Charakter" Height="450" Width="800">
|
|
<Grid Margin="20">
|
|
<StackPanel>
|
|
<TextBlock Text="🧝 Charakterbogen" FontSize="22" FontWeight="Bold" Margin="0,0,0,20"/>
|
|
|
|
<TextBlock Text="Name:"/>
|
|
<TextBox Text="{Binding Name}" Margin="0,5,0,10"/>
|
|
|
|
<TextBlock Text="Klasse:"/>
|
|
<ComboBox SelectedItem="{Binding Klasse}" Margin="0,5,0,10">
|
|
<ComboBoxItem>Magier</ComboBoxItem>
|
|
<ComboBoxItem>Krieger</ComboBoxItem>
|
|
<ComboBoxItem>Schurke</ComboBoxItem>
|
|
<ComboBoxItem>Kleriker</ComboBoxItem>
|
|
</ComboBox>
|
|
|
|
<TextBlock Text="HP:"/>
|
|
<TextBox Text="{Binding HP}" Margin="0,5,0,10"/>
|
|
|
|
<TextBlock Text="Inventar:"/>
|
|
<TextBox Text="{Binding Inventar}" AcceptsReturn="True" Height="60" TextWrapping="Wrap" Margin="0,5,0,10"/>
|
|
|
|
<TextBlock Text="Notizen:"/>
|
|
<TextBox Text="{Binding Notizen}" AcceptsReturn="True" Height="75" TextWrapping="Wrap" Margin="0,5,0,20"/>
|
|
|
|
<Button Content="💾 Speichern" Width="150" HorizontalAlignment="Center" Command="{Binding SpeichernCommand}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|