16 lines
737 B
XML
16 lines
737 B
XML
<Window x:Class="Pen_Paper_Main.CharakterListe"
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
Title="Charaktere" Height="300" Width="400" Loaded="Window_Loaded">
|
||
|
||
<!--jakob-->
|
||
<StackPanel Margin="10">
|
||
<Button Content="➕ Neu" Click="New_Click" Margin="0,0,0,6"/>
|
||
<ListBox x:Name="LstChars" Height="180" DisplayMemberPath="name"/>
|
||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,8,0,0">
|
||
<Button Content="🗑️ Löschen" Click="Delete_Click" Margin="0,0,8,0"/>
|
||
<Button Content="Schließen" Click="Close_Click"/>
|
||
</StackPanel>
|
||
</StackPanel>
|
||
</Window>
|