81 lines
3.9 KiB
XML
81 lines
3.9 KiB
XML
<Window x:Class="Pen_Paper_Main.KampangenDetails"
|
||
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:Pen_Paper_Main"
|
||
mc:Ignorable="d"
|
||
Title="KampangenDetails" Height="450" Width="800">
|
||
<Grid Background="LightBlue">
|
||
<StackPanel Margin="10">
|
||
<TextBlock Text="📂 Kampagne: Schatten über Aerion"
|
||
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>
|