2024-08-05 11:38:55 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2024-07-15 05:22:53 +00:00
|
|
|
<Page
|
|
|
|
x:Class="RustTools.Views.UserPage"
|
2024-07-14 11:24:10 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
2024-08-05 11:38:55 +00:00
|
|
|
xmlns:local="using:RustTools.Views"
|
2024-07-14 11:24:10 +00:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-08-05 11:38:55 +00:00
|
|
|
xmlns:styles="using:RustTools.Styles"
|
|
|
|
mc:Ignorable="d">
|
2024-07-14 11:24:10 +00:00
|
|
|
|
2024-07-15 05:22:53 +00:00
|
|
|
<Grid>
|
2024-08-13 13:59:14 +00:00
|
|
|
<Grid
|
|
|
|
MinWidth="350"
|
|
|
|
Margin="16"
|
|
|
|
HorizontalAlignment="Center">
|
|
|
|
<StackPanel>
|
2024-08-05 11:38:55 +00:00
|
|
|
|
2024-08-13 13:59:14 +00:00
|
|
|
<TextBlock HorizontalAlignment="Center" Text="登陆" />
|
|
|
|
<StackPanel>
|
|
|
|
<TextBox
|
|
|
|
Margin="0,16,0,16"
|
|
|
|
InputScope="AlphanumericPin"
|
|
|
|
PlaceholderText="账号" />
|
|
|
|
<PasswordBox Margin="0,0,0,16" PlaceholderText="密码" />
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
|
|
<Button
|
|
|
|
Width="100"
|
|
|
|
Margin="16"
|
|
|
|
Content="登陆"
|
|
|
|
Style="{StaticResource AccentButtonStyle}" />
|
|
|
|
<Button Margin="0,0,0,0" Content="注册" />
|
|
|
|
</StackPanel>
|
|
|
|
<CheckBox>
|
|
|
|
<CheckBox.Content>
|
|
|
|
<StackPanel Orientation="Horizontal" ToolTipService.ToolTip="虽然没什么用但是这是常规的">
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="我同意" />
|
|
|
|
<HyperlinkButton
|
|
|
|
x:Name="hlbTerms"
|
|
|
|
Content="《服务协议》"
|
|
|
|
NavigateUri="https://rust.coldmint.top/resources/agreement/service_agreement.html" />
|
|
|
|
<TextBlock VerticalAlignment="Center" Text="与" />
|
|
|
|
<HyperlinkButton
|
|
|
|
x:Name="hlbPrivacy"
|
|
|
|
Content="《隐私政策》"
|
|
|
|
NavigateUri="https://rust.coldmint.top/resources/agreement/privacy_policy.html" />
|
|
|
|
</StackPanel>
|
|
|
|
</CheckBox.Content>
|
|
|
|
</CheckBox>
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
<Grid Name="gridview" Visibility="Collapsed">
|
2024-08-05 11:38:55 +00:00
|
|
|
|
2024-08-13 13:59:14 +00:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="110" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid>
|
2024-08-05 11:38:55 +00:00
|
|
|
|
2024-08-13 13:59:14 +00:00
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border
|
|
|
|
Grid.Column="0"
|
|
|
|
Padding="9,9,26,9"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
|
|
CornerRadius="10">
|
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Border
|
|
|
|
Grid.Column="0"
|
|
|
|
Width="86"
|
|
|
|
Height="86"
|
|
|
|
Background="BlanchedAlmond"
|
|
|
|
CornerRadius="16">
|
|
|
|
<Image Source="http://q1.qlogo.cn/g?b=qq&nk=2923268971&s=100" />
|
|
|
|
</Border>
|
|
|
|
<StackPanel Grid.Column="1" Margin="16,0,0,0">
|
|
|
|
<TextBlock
|
|
|
|
Margin="0,9,0,0"
|
|
|
|
Style="{StaticResource TitleTextBlockStyle}"
|
|
|
|
Text="Muqing" />
|
|
|
|
<TextBlock
|
|
|
|
Margin="0,6,0,0"
|
|
|
|
Style="{StaticResource BodyTextBlockStyle}"
|
|
|
|
Text="测试员,开发者,这里是签名哦" />
|
|
|
|
</StackPanel>
|
|
|
|
<FontIcon Grid.Column="2" Glyph="" />
|
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
<Border
|
|
|
|
Grid.Column="1"
|
|
|
|
Margin="16,0,0,0"
|
|
|
|
Padding="30,9,30,9"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
|
|
CornerRadius="10">
|
|
|
|
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal">
|
2024-08-05 11:38:55 +00:00
|
|
|
|
2024-08-13 13:59:14 +00:00
|
|
|
<styles:TitleSubtitleControl
|
|
|
|
Style="{StaticResource TitleSubtitleControlStyle}"
|
|
|
|
SubtitleText="关注"
|
|
|
|
TitleText="99" />
|
|
|
|
<Rectangle
|
|
|
|
Width="1"
|
|
|
|
Height="10"
|
|
|
|
Margin="16,0,16,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Fill="Gray" />
|
2024-07-14 11:24:10 +00:00
|
|
|
|
2024-08-13 13:59:14 +00:00
|
|
|
<styles:TitleSubtitleControl
|
|
|
|
Style="{StaticResource TitleSubtitleControlStyle}"
|
|
|
|
SubtitleText="粉丝"
|
|
|
|
TitleText="99" />
|
|
|
|
<Rectangle
|
|
|
|
Width="1"
|
|
|
|
Height="10 "
|
|
|
|
Margin="16,0,16,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Fill="Gray" />
|
|
|
|
<styles:TitleSubtitleControl
|
|
|
|
Style="{StaticResource TitleSubtitleControlStyle}"
|
|
|
|
SubtitleText="获赞"
|
|
|
|
TitleText="99" />
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
|
|
|
<Pivot Grid.Row="1" Grid.Column="0">
|
|
|
|
<PivotItem Header="模组">
|
|
|
|
<TextBlock Text="这里是你全部发布的模组" />
|
|
|
|
</PivotItem>
|
|
|
|
<PivotItem Header="动态">
|
|
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
|
|
<TextBlock Text="这里是你全部发布的动态" />
|
|
|
|
<Button
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="1"
|
|
|
|
Margin="16,16,0,16"
|
|
|
|
HorizontalAlignment="Right"
|
|
|
|
Content="我要发布动态" />
|
|
|
|
</Grid>
|
|
|
|
</PivotItem>
|
|
|
|
</Pivot>
|
|
|
|
</Grid>
|
2024-07-14 11:24:10 +00:00
|
|
|
</Grid>
|
|
|
|
</Page>
|