JukeboxMenu.xaml 1.1 KB

123456789101112131415161718
  1. <ui:FancyWindow xmlns="https://spacestation14.io" xmlns:ui="clr-namespace:Content.Client.UserInterface.Controls"
  2. SetSize="400 500" Title="{Loc 'jukebox-menu-title'}">
  3. <BoxContainer Margin="4 0" Orientation="Vertical">
  4. <ItemList Name="MusicList" SelectMode="Button" Margin="3 3 3 3"
  5. HorizontalExpand="True" VerticalExpand="True" SizeFlagsStretchRatio="8"/>
  6. <BoxContainer Orientation="Vertical">
  7. <Label Name="SongSelected" Text="{Loc 'jukebox-menu-selectedsong'}" />
  8. <Label Name="SongName" Text="---" />
  9. <Slider Name="PlaybackSlider" HorizontalExpand="True" />
  10. </BoxContainer>
  11. <BoxContainer Orientation="Horizontal" HorizontalExpand="True"
  12. VerticalExpand="False" SizeFlagsStretchRatio="1">
  13. <Button Name="PlayButton" Text="{Loc 'jukebox-menu-buttonplay'}" />
  14. <Button Name="StopButton" Text="{Loc 'jukebox-menu-buttonstop'}" />
  15. <Label Name="DurationLabel" Text="00:00 / 00:00" HorizontalAlignment="Right" HorizontalExpand="True"/>
  16. </BoxContainer>
  17. </BoxContainer>
  18. </ui:FancyWindow>