初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器 HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块 Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚 AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
This commit is contained in:
+187
@@ -0,0 +1,187 @@
|
||||
<local:MyPageRight
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:PCL"
|
||||
xmlns:svgIcon="clr-namespace:PCL.Core.UI.Controls.SvgIcon;assembly=PCL.Core"
|
||||
xmlns:coreControls="clr-namespace:PCL.Core.UI.Controls;assembly=PCL.Core"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d"
|
||||
x:Class="PCL.PageSetupLauncherLanguage"
|
||||
PanScroll="{Binding ElementName=PanBack}">
|
||||
|
||||
<local:MyScrollViewer
|
||||
x:Name="PanBack"
|
||||
VerticalScrollBarVisibility="Auto"
|
||||
HorizontalScrollBarVisibility="Disabled">
|
||||
|
||||
<StackPanel x:Name="PanMain" Margin="25,10">
|
||||
<local:MyCard
|
||||
Margin="0,15,0,10"
|
||||
Title="{DynamicResource Setup.Language.CardTitle}">
|
||||
|
||||
<StackPanel Margin="25,40,25,15">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="Auto" SharedSizeGroup="Name" />
|
||||
<ColumnDefinition Width="1*" />
|
||||
<ColumnDefinition Width="60" />
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="28" />
|
||||
<RowDefinition Height="9" />
|
||||
<RowDefinition Height="28" />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<TextBlock
|
||||
Grid.Row="0"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Left"
|
||||
Margin="0,0,25,0"
|
||||
Text="{DynamicResource Setup.Language.UiLanguage}" />
|
||||
|
||||
<local:MyComboBox
|
||||
x:Name="ComboUiLanguage"
|
||||
Grid.Row="0"
|
||||
Grid.Column="1"
|
||||
Grid.ColumnSpan="2"
|
||||
SelectionChanged="ComboUiLanguage_SelectionChanged" />
|
||||
|
||||
<TextBlock
|
||||
Grid.Row="2"
|
||||
VerticalAlignment="Center"
|
||||
HorizontalAlignment="Left"
|
||||
Margin="0,0,25,0"
|
||||
Text="{DynamicResource Setup.Language.FormatCulture}" />
|
||||
|
||||
<local:MyComboBox
|
||||
x:Name="ComboUiFormatCulture"
|
||||
Grid.Row="2"
|
||||
Grid.Column="1"
|
||||
Grid.ColumnSpan="2"
|
||||
SelectionChanged="ComboUiFormatCulture_SelectionChanged" />
|
||||
</Grid>
|
||||
|
||||
<coreControls:BlurBorder
|
||||
x:Name="BannerInternationalization"
|
||||
Margin="0,10,0,0"
|
||||
Padding="25"
|
||||
MinHeight="230"
|
||||
CornerRadius="5"
|
||||
ClipToBounds="True"
|
||||
Background="{DynamicResource ColorBrush7}">
|
||||
|
||||
<Grid>
|
||||
<Canvas
|
||||
Width="205"
|
||||
Height="145"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Top"
|
||||
Margin="0,-43,-25,0"
|
||||
Panel.ZIndex="0"
|
||||
IsHitTestVisible="False">
|
||||
|
||||
<svgIcon:SvgIcon
|
||||
Width="215"
|
||||
Height="215"
|
||||
Canvas.Left="5"
|
||||
Canvas.Top="-56"
|
||||
Icon="lucide/earth"
|
||||
IconBrush="{DynamicResource ColorBrush5}"
|
||||
StrokeThickness="2.4"
|
||||
Opacity="0.62"
|
||||
Stretch="Uniform" />
|
||||
</Canvas>
|
||||
|
||||
<Grid Panel.ZIndex="1">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<StackPanel Grid.Row="0" Margin="0,0,170,0" HorizontalAlignment="Left">
|
||||
<TextBlock
|
||||
FontSize="22"
|
||||
FontWeight="Bold"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="{DynamicResource Setup.Language.Banner.TitlePrefix}"
|
||||
TextWrapping="Wrap" />
|
||||
|
||||
<TextBlock
|
||||
Margin="0,2,0,2"
|
||||
FontFamily="Bahnschrift"
|
||||
FontSize="42"
|
||||
FontWeight="Bold"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="PCL CE"
|
||||
TextWrapping="Wrap" />
|
||||
|
||||
<TextBlock
|
||||
FontSize="22"
|
||||
FontWeight="Bold"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="{DynamicResource Setup.Language.Banner.TitleSuffix}"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Grid.Row="1" Margin="0,20,0,0">
|
||||
<TextBlock
|
||||
FontSize="14"
|
||||
LineHeight="23"
|
||||
LineStackingStrategy="BlockLineHeight"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="{DynamicResource Setup.Language.Banner.DescriptionLine1}"
|
||||
TextWrapping="Wrap" />
|
||||
|
||||
<TextBlock
|
||||
Margin="0,5,0,0"
|
||||
FontSize="14"
|
||||
LineHeight="23"
|
||||
LineStackingStrategy="BlockLineHeight"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="{DynamicResource Setup.Language.Banner.DescriptionLine2}"
|
||||
TextWrapping="Wrap" />
|
||||
|
||||
<TextBlock
|
||||
Margin="0,5,0,0"
|
||||
FontSize="14"
|
||||
LineHeight="23"
|
||||
LineStackingStrategy="BlockLineHeight"
|
||||
Foreground="{DynamicResource ColorBrush1}"
|
||||
Text="{DynamicResource Setup.Language.Banner.DescriptionLine3}"
|
||||
TextWrapping="Wrap" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</coreControls:BlurBorder>
|
||||
|
||||
<StackPanel
|
||||
Margin="0,10,0,0"
|
||||
HorizontalAlignment="Right"
|
||||
Orientation="Horizontal">
|
||||
|
||||
<local:MyIconTextButton
|
||||
x:Name="BtnSubmitPullRequest"
|
||||
Margin="0,0,7,0"
|
||||
Text="{DynamicResource Setup.Language.Banner.SubmitPullRequest}"
|
||||
SvgIcon="lucide/upload"
|
||||
ColorType="Highlight"
|
||||
ToolTip="{DynamicResource Setup.Language.Banner.SubmitPullRequest}"
|
||||
local:CustomEventService.EventType="OpenUrl"
|
||||
local:CustomEventService.EventData="https://github.com/PCL-Community/PCL-CE/pulls" />
|
||||
|
||||
<local:MyIconTextButton
|
||||
x:Name="BtnViewDeveloperDocs"
|
||||
Text="{DynamicResource Setup.Language.Banner.ViewDeveloperDocs}"
|
||||
SvgIcon="lucide/book-marked"
|
||||
ToolTip="{DynamicResource Setup.Language.Banner.ViewDeveloperDocs}"
|
||||
local:CustomEventService.EventType="OpenUrl"
|
||||
local:CustomEventService.EventData="https://docs.pclc.cc/ce/developers/" />
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
</local:MyCard>
|
||||
</StackPanel>
|
||||
</local:MyScrollViewer>
|
||||
</local:MyPageRight>
|
||||
Reference in New Issue
Block a user