RecipeTooltip.xaml 666 B

12345678910111213141516171819
  1. <Control xmlns="https://spacestation14.io"
  2. xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  3. MaxWidth="400">
  4. <PanelContainer>
  5. <PanelContainer.PanelOverride>
  6. <gfx:StyleBoxFlat
  7. BorderThickness="2"
  8. BorderColor="#464966"
  9. BackgroundColor="#25252A"
  10. />
  11. </PanelContainer.PanelOverride>
  12. <BoxContainer
  13. Orientation="Vertical"
  14. RectClipContent="True"
  15. Margin="4">
  16. <RichTextLabel Name="RecipeTooltipLabel" HorizontalExpand="True" />
  17. </BoxContainer>
  18. </PanelContainer>
  19. </Control>