18 lines
809 B
XML
18 lines
809 B
XML
<Window x:Class="Pen_Paper_Main.CharakterNeu"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Neuer Charakter" Height="200" Width="320">
|
|
<Border Background="White" CornerRadius="8" Padding="12">
|
|
<StackPanel>
|
|
<TextBlock Text="Benutzername" Margin="0,0,0,4"/>
|
|
<TextBox x:Name="TxtUser" Margin="0,0,0,8"/>
|
|
|
|
<TextBlock Text="Charaktername" Margin="0,0,0,4"/>
|
|
<TextBox x:Name="TxtChar" Margin="0,0,0,12"/>
|
|
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button Content="Speichern" Width="100" Click="Save_Click"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</Border>
|
|
</Window> |