51 lines
2.9 KiB
XML
51 lines
2.9 KiB
XML
<Control xmlns="https://spacestation14.io"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls"
|
|
MinSize="100 100">
|
|
<BoxContainer Orientation="Vertical" >
|
|
<customControls:HSeparator/>
|
|
<BoxContainer Orientation="Horizontal" SeparationOverride="2" HorizontalExpand="True">
|
|
<customControls:VSeparator/>
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
|
|
<Label Text="{Loc 'user-profile-sponsor-title'}" StyleClasses="LabelHeadingBigger" HorizontalAlignment="Center"/>
|
|
<GridContainer Columns="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalExpand="True"
|
|
VerticalAlignment="Top"
|
|
Margin="5 5 5 5">
|
|
<Label Text="{Loc 'user-profile-level'}" StyleClasses="LabelKeyText"/>
|
|
<Label Name="SponsorTierName" />
|
|
</GridContainer>
|
|
<GridContainer Columns="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalExpand="True"
|
|
VerticalAlignment="Top">
|
|
<Button Name="InfoSponsorButton" Text="{Loc 'user-profile-sponsor-info-button'}" Disabled="True" />
|
|
<Button Name="BuySponsorButton" Text="{Loc 'user-profile-sponsor-buy-button'}" />
|
|
</GridContainer>
|
|
</BoxContainer>
|
|
<customControls:VSeparator/>
|
|
<BoxContainer Orientation="Vertical" HorizontalExpand="True">
|
|
<Label Text="{Loc 'user-profile-social-links'}" StyleClasses="LabelHeadingBigger" HorizontalAlignment="Center"/>
|
|
<GridContainer Columns="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalExpand="True"
|
|
VerticalAlignment="Top"
|
|
Margin="5 5 5 5">
|
|
<Label Text="{Loc 'user-profile-service-discord'}" StyleClasses="LabelKeyText"/>
|
|
<BoxContainer Orientation="Horizontal">
|
|
<Label Name="LinkedDiscordName" />
|
|
<Button Name="LinkDiscordButton" Text="{Loc 'user-profile-service-link'}"/>
|
|
</BoxContainer>
|
|
<Label Text="{Loc 'user-profile-service-telegram'}" StyleClasses="LabelKeyText"/>
|
|
<BoxContainer Orientation="Horizontal" >
|
|
<Label Name="LinkedTelegramName" />
|
|
<Button Name="LinkTelegramButton" Text="{Loc 'user-profile-service-link'}"/>
|
|
</BoxContainer>
|
|
</GridContainer>
|
|
</BoxContainer>
|
|
<customControls:VSeparator/>
|
|
</BoxContainer>
|
|
<customControls:HSeparator/>
|
|
</BoxContainer>
|
|
</Control>
|