AdminShuttleWindow.xaml 929 B

1234567891011121314
  1. <DefaultWindow xmlns="https://spacestation14.io"
  2. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
  3. Title="{Loc 'admin-shuttle-title'}"
  4. MinWidth="300">
  5. <BoxContainer Orientation="Vertical">
  6. <BoxContainer Orientation="Horizontal" HorizontalExpand="True">
  7. <LineEdit Name="_callShuttleTime" Text="4:00" PlaceHolder="m:ss" HorizontalExpand="True" SizeFlagsStretchRatio="2"/>
  8. <Control HorizontalExpand="True" SizeFlagsStretchRatio="1"/>
  9. <cc:CommandButton Command="callshuttle 4:00" Name="_callShuttleButton" Text="{Loc 'comms-console-menu-call-shuttle'}" HorizontalExpand="True" SizeFlagsStretchRatio="2" />
  10. </BoxContainer>
  11. <cc:CommandButton Command="recallshuttle" Name="_recallShuttleButton" Text="{Loc 'comms-console-menu-recall-shuttle'}" HorizontalAlignment="Center"/>
  12. </BoxContainer>
  13. </DefaultWindow>