Files
tbd-station-14/Content.Client/UserInterface/Systems/Character/Windows/CharacterWindow.xaml
Justin Trotter 72b6c2b54b reformatted syndicate objectives for readability (#17745)
* reformatted syndicate objectives for readability

* used richtextlabels instead of labels, narrowed window size back to original
2023-07-04 18:33:11 -06:00

23 lines
1.2 KiB
XML

<windows:CharacterWindow
xmlns="https://spacestation14.io"
xmlns:cc="clr-namespace:Content.Client.UserInterface.Controls"
xmlns:windows="clr-namespace:Content.Client.UserInterface.Systems.Character.Windows"
Title="{Loc 'character-info-title'}"
MinWidth="400"
MinHeight="545">
<ScrollContainer>
<BoxContainer Orientation="Vertical">
<BoxContainer Orientation="Horizontal">
<SpriteView OverrideDirection="South" Scale="2 2" Name="SpriteView" Access="Public" SetSize="64 64"/>
<BoxContainer Orientation="Vertical" VerticalAlignment="Top">
<Label Name="NameLabel" Access="Public"/>
<Label Name="SubText" VerticalAlignment="Top" StyleClasses="LabelSubText" Access="Public"/>
</BoxContainer>
</BoxContainer>
<Label Text="{Loc 'character-info-objectives-label'}" HorizontalAlignment="Center"/>
<BoxContainer Orientation="Vertical" Name="Objectives" Access="Public"/>
<cc:Placeholder PlaceholderText="{Loc 'character-info-roles-antagonist-text'}"/>
</BoxContainer>
</ScrollContainer>
</windows:CharacterWindow>