2025-08-27 10:34:08 +02:00

81 lines
3.8 KiB
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="PenAndPaperFinal_Final.KampagnenDetails"
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="KampagnenDetails" Height="450" Width="800">
<Grid Background="LightBlue">
<StackPanel Margin="10">
<TextBlock Text="📂 Kampagne: "
FontSize="20"
FontWeight="Bold"
Margin="0,0,0,10" />
<TabControl>
<TabItem Header="📝 Allgemein">
<StackPanel Margin="10" Height="300">
<TextBlock Text="Titel:" />
<TextBox Text="PlatzHalter" Foreground="LightGray" Margin="0,5,0,10" Height="50" />
<TextBlock Text="Beschreibung:" />
<TextBox Text="PlatzHalter" Foreground="LightGray"
AcceptsReturn="True"
Height="100" Margin="0,5,0,10" />
<Button Content="💾 Speichern" Width="150" HorizontalAlignment="Left" />
</StackPanel>
</TabItem>
<TabItem Header="🗺️ Karten">
<StackPanel Margin="10" Height="100">
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<DockPanel Margin="0,5">
<TextBlock DockPanel.Dock="Left" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="🔍 Ansehen" Margin="5,0"/>
<Button Content="🗑️ Entfernen" Margin="5,0"/>
</StackPanel>
</DockPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<Button Content=" Neue Karte hinzufügen" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
<TabItem Header="🧙 Charaktere">
<StackPanel Margin="10" Height="100">
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<DockPanel Margin="0,5">
<TextBlock DockPanel.Dock="Left" />
<Button Content="🗑️ Entfernen" HorizontalAlignment="Right"/>
</DockPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<Button Content=" Charakter zuweisen" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
<TabItem Header="📚 Notizen">
<StackPanel Margin="10">
<TextBox Text="Notizen" Foreground="LightGray"
AcceptsReturn="True"
Height="200"
TextWrapping="Wrap" />
<Button Content="💾 Notizen speichern" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
</TabControl>
</StackPanel>
</Grid>
</Window>