VendingMachineMenu.xaml 1.3 KB

12345678910111213141516171819202122
  1. <controls:FancyWindow
  2. xmlns="https://spacestation14.io"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  5. xmlns:co="clr-namespace:Content.Client.UserInterface.Controls"
  6. MinHeight="210">
  7. <BoxContainer Name="MainContainer" Orientation="Vertical">
  8. <LineEdit Name="SearchBar" PlaceHolder="{Loc 'vending-machine-component-search-filter'}" HorizontalExpand="True" Margin ="4 4"/>
  9. <co:SearchListContainer Name="VendingContents" VerticalExpand="True" Margin="4 4"/>
  10. <!-- Footer -->
  11. <BoxContainer Orientation="Vertical">
  12. <PanelContainer StyleClasses="LowDivider" />
  13. <BoxContainer Orientation="Horizontal" Margin="10 2 5 0" VerticalAlignment="Bottom">
  14. <Label Text="{Loc 'vending-machine-flavor-left'}" StyleClasses="WindowFooterText" />
  15. <Label Text="{Loc 'vending-machine-flavor-right'}" StyleClasses="WindowFooterText"
  16. HorizontalAlignment="Right" HorizontalExpand="True" Margin="0 0 5 0" />
  17. <TextureRect StyleClasses="NTLogoDark" Stretch="KeepAspectCentered"
  18. VerticalAlignment="Center" HorizontalAlignment="Right" SetSize="19 19"/>
  19. </BoxContainer>
  20. </BoxContainer>
  21. </BoxContainer>
  22. </controls:FancyWindow>