VotePopup.xaml 703 B

1234567891011121314
  1. <Control xmlns="https://spacestation14.io" MinWidth="300" MaxWidth="500">
  2. <PanelContainer StyleClasses="AngleRect" />
  3. <BoxContainer Margin="4" Orientation="Vertical">
  4. <Label Name="VoteCaller" />
  5. <RichTextLabel Name="VoteTitle" />
  6. <Button Margin="4 4" Name="FollowVoteTarget" Text="{Loc 'ui-vote-follow-button-popup'}" Visible="False"></Button>
  7. <GridContainer Columns="3" Name="VoteOptionsContainer"/>
  8. <BoxContainer Orientation="Horizontal">
  9. <ProgressBar Margin="4" HorizontalExpand="True" Name="TimeLeftBar" MinValue="0" MaxValue="1" />
  10. <Label Name="TimeLeftText" />
  11. </BoxContainer>
  12. </BoxContainer>
  13. </Control>