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

26 lines
1.2 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.Karte"
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="Karte" Height="450" Width="800">
<DockPanel>
<!-- Toolbar oben -->
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="#f0f0f0">
<Button Content=" Neue Zone" Margin="5"/>
<Button Content="🎯 Token platzieren" Margin="5"/>
<Button Content="💾 Speichern" Margin="5"/>
<Button Content="🔙 Zurück" Margin="5"/>
</StackPanel>
<!-- Kartenfläche -->
<Border BorderBrush="Gray" BorderThickness="1" Background="LightGray" Margin="10">
<Canvas x:Name="KartenCanvas" Background="White">
<!-- Token-/Zone-Elemente würden hier als UIElemente gezeichnet -->
</Canvas>
</Border>
</DockPanel>
</Window>