work on minimap
This commit is contained in:
parent
3bb0315912
commit
2565028ad0
4 changed files with 33 additions and 21 deletions
|
|
@ -73,12 +73,12 @@
|
|||
<TabItem Header="State">
|
||||
<Grid RowDefinitions="Auto,*" Margin="0,6,0,0">
|
||||
|
||||
<!-- Top row: Inventory + Minimap side by side -->
|
||||
<Grid Grid.Row="0" ColumnDefinitions="*,Auto" Margin="0,0,0,6">
|
||||
<!-- Top row: Inventory + Minimap side by side (splitter-resizable) -->
|
||||
<Grid Grid.Row="0" ColumnDefinitions="*,5,300" Margin="0,0,0,6">
|
||||
|
||||
<!-- Inventory Grid (12x5) -->
|
||||
<Border Grid.Column="0" Background="#161b22" BorderBrush="#30363d"
|
||||
BorderThickness="1" CornerRadius="8" Padding="8" Margin="0,0,6,0">
|
||||
BorderThickness="1" CornerRadius="8" Padding="8" MinWidth="200">
|
||||
<DockPanel>
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Margin="0,0,0,4">
|
||||
<TextBlock Text="INVENTORY" FontSize="11" FontWeight="SemiBold"
|
||||
|
|
@ -107,9 +107,11 @@
|
|||
</DockPanel>
|
||||
</Border>
|
||||
|
||||
<GridSplitter Grid.Column="1" Background="Transparent" />
|
||||
|
||||
<!-- Minimap -->
|
||||
<Border Grid.Column="1" Background="#161b22" BorderBrush="#30363d"
|
||||
BorderThickness="1" CornerRadius="8" Padding="8" Width="300">
|
||||
<Border Grid.Column="2" Background="#161b22" BorderBrush="#30363d"
|
||||
BorderThickness="1" CornerRadius="8" Padding="8" MinWidth="150">
|
||||
<DockPanel>
|
||||
<Grid DockPanel.Dock="Top" ColumnDefinitions="Auto,*,Auto" Margin="0,0,0,4">
|
||||
<TextBlock Grid.Column="0" Text="MINIMAP" FontSize="11" FontWeight="SemiBold"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue