VPR-Projekt-Frontend-2/CharakterListe.xaml

16 lines
737 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>