GrinderMenu.xaml 1.5 KB

123456789101112131415161718
  1. <controls:FancyWindow xmlns="https://spacestation14.io"
  2. xmlns:ui="clr-namespace:Content.Client.Kitchen.UI"
  3. xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
  4. Title="{Loc grinder-menu-title}" MinSize="768 256">
  5. <BoxContainer Orientation="Horizontal">
  6. <BoxContainer Orientation="Vertical" VerticalAlignment="Top" Margin="8" MinWidth="100">
  7. <Label Text="{Loc grinder-menu-auto-label}" HorizontalAlignment="Center"/>
  8. <Button Name="AutoModeButton" Text="{Loc grinder-menu-auto-button}" TextAlign="Center" MinSize="64 48" Margin="0 0 0 16" />
  9. <Label Text="{Loc grinder-menu-manual-label}" HorizontalAlignment="Center"/>
  10. <Button Name="GrindButton" Text="{Loc grinder-menu-grind-button}" TextAlign="Center" MinSize="64 48" Margin="0 0 0 16" />
  11. <Button Name="JuiceButton" Text="{Loc grinder-menu-juice-button}" TextAlign="Center" MinSize="64 48" />
  12. </BoxContainer>
  13. <ui:LabelledContentBox Name="ChamberContentBox" LabelText="{Loc grinder-menu-chamber-content-box-label}" ButtonText="{Loc grinder-menu-chamber-content-box-button}" VerticalExpand="True" HorizontalExpand="True" Margin="8" SizeFlagsStretchRatio="2"/>
  14. <ui:LabelledContentBox Name="BeakerContentBox" LabelText="{Loc grinder-menu-beaker-content-box-label}" ButtonText="{Loc grinder-menu-beaker-content-box-button}" VerticalExpand="True" HorizontalExpand="True" Margin="8" SizeFlagsStretchRatio="2"/>
  15. </BoxContainer>
  16. </controls:FancyWindow>