* trading portal replace traveling storeship * clean up content * clean up content 2 * seel and buy realization * fixes * Update migration.yml * Update migration.yml * Update dev_map.yml * Update dev_map.yml * thats work correctly now * bugfies and visual * factions * faction restruct + name reduce * unnesting sell cargo positions * unnesting cargo positions * more cargo content * Update buy.yml * improve tradeportal visual * Update migration.yml * Bank ad Commandant removal * merchant objectives * finish * clean up content * Update migration.yml * fix goal calculation * Update comoss.yml * Update dev_map.yml
33 lines
2.1 KiB
XML
33 lines
2.1 KiB
XML
<DefaultWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
Name="Window"
|
|
Title=""
|
|
MinSize="800 600"
|
|
SetSize="800 600">
|
|
<BoxContainer Orientation="Horizontal">
|
|
<BoxContainer HorizontalExpand="True" VerticalExpand="True" Orientation="Horizontal">
|
|
<!-- Product list (left side UI) -->
|
|
<TabContainer SizeFlagsStretchRatio="0.5" Name="Tabs" HorizontalExpand="True" VerticalExpand="True" MinSize="0 200">
|
|
<ScrollContainer HorizontalExpand="True" VerticalExpand="True" MinSize="0 200">
|
|
<BoxContainer Name="BuyProductsContainer" Orientation="Vertical" HorizontalExpand="True"/>
|
|
</ScrollContainer>
|
|
<ScrollContainer HorizontalExpand="True" VerticalExpand="True" MinSize="0 200">
|
|
<BoxContainer Name="SellProductsContainer" Orientation="Vertical" HorizontalExpand="True"/>
|
|
</ScrollContainer>
|
|
</TabContainer>
|
|
<!-- Station trading data (right side UI) -->
|
|
<BoxContainer SizeFlagsStretchRatio="0.5" Orientation="Vertical" HorizontalExpand="True" VerticalExpand="True" Margin="0 0 10 0">
|
|
<controls:StripeBack>
|
|
<PanelContainer>
|
|
<Label Text="{Loc 'cp14-store-ui-order'}" Align="Center" Margin="0 5 0 3"/>
|
|
</PanelContainer>
|
|
</controls:StripeBack>
|
|
<Label Name="TravelTimeLabel" Text="00:00" HorizontalAlignment="Center" HorizontalExpand="True" Margin="0 15 0 0"/>
|
|
<controls:HLine Color="#404040" Thickness="2" Margin="0 5"/>
|
|
<RichTextLabel Name="SelectedName" HorizontalExpand="True" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="5"/>
|
|
<RichTextLabel Name="SelectedDesc" HorizontalExpand="True" VerticalExpand="True" VerticalAlignment="Top" Margin="5"/>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</DefaultWindow>
|