Files
MRCC/launcher/PCL-CE/Plain Craft Launcher 2/Pages/PageTools/PageToolsLeft.xaml
T
xyou f70b061d1a
CI / Go Backend (push) Canceled after 0s
feat: 项目初始化 + 3D方块世界原型 + AI助搭系统
初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器

HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块

Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚

AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
2026-08-08 14:07:56 +08:00

51 lines
2.5 KiB
XML

<local:MyPageLeft x:Class="PCL.PageToolsLeft"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:PCL"
mc:Ignorable="d">
<StackPanel Orientation="Vertical" x:Name="PanItem" Margin="0,12,0,0">
<TextBlock Text="{DynamicResource Tools.Left.Multiplayer}"
Margin="13,5,5,3"
Opacity="0.6" FontSize="12"
x:Name="TextGameLinkCategory" />
<local:MyListItem x:Name="ItemGameLink"
IsScaleAnimationEnabled="False"
Type="RadioBox" Tag="1"
Check="PageCheck"
MinPaddingRight="35" Height="36"
VerticalAlignment="Top"
Title="{DynamicResource Tools.Left.Lobby}"
LogoScale="0.85"
SvgIcon="lucide/link-2">
<local:MyListItem.Buttons>
<x:Array Type="{x:Type local:MyIconButton}">
<local:MyIconButton Tag="1"
ToolTip="{DynamicResource Common.Action.Refresh}"
ToolTipService.Placement="Right"
ToolTipService.InitialShowDelay="200"
ToolTipService.VerticalOffset="-1"
LogoScale="0.85"
Click="Refresh"
SvgIcon="lucide/refresh-cw" />
</x:Array>
</local:MyListItem.Buttons>
</local:MyListItem>
<TextBlock Text="{DynamicResource Tools.Left.Utilities}" Margin="13,5,5,3" Opacity="0.6" FontSize="12"
x:Name="TextToolsCategory" />
<local:MyListItem x:Name="ItemTest"
IsScaleAnimationEnabled="False"
Type="RadioBox" Tag="3"
MinPaddingRight="35" Height="36"
VerticalAlignment="Top"
Title="{DynamicResource Tools.Left.Utilities.Title}" Check="PageCheck"
LogoScale="0.9"
SvgIcon="lucide/tool-case" />
</StackPanel>
</local:MyPageLeft>