CI / Go Backend (push) Canceled after 0s
初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器 HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块 Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚 AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
31 lines
2.2 KiB
XML
31 lines
2.2 KiB
XML
<local:MyPageLeft x:Class="PCL.PageInstanceSavesLeft"
|
|
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"
|
|
d:DesignHeight="450" HorizontalAlignment="Left">
|
|
<StackPanel Margin="0,12,0,0" Name="PanItem">
|
|
<local:MyListItem x:Name="ItemInfo" IsScaleAnimationEnabled="False" Checked="True" Type="RadioBox" Tag="0"
|
|
MinPaddingRight="35" Height="36" VerticalAlignment="Top" Title="{DynamicResource Instance.Saves.Left.Info}"
|
|
LogoScale="1"
|
|
SvgIcon="lucide/info" />
|
|
<local:MyListItem x:Name="ItemDatapack" Title="{DynamicResource Instance.Saves.Left.Datapack}" IsScaleAnimationEnabled="False" Type="RadioBox" Tag="1"
|
|
MinPaddingRight="35" Height="36" VerticalAlignment="Top" LogoScale="0.91"
|
|
SvgIcon="lucide/file-archive">
|
|
<local:MyListItem.Buttons>
|
|
<x:Array Type="{x:Type local:MyIconButton}">
|
|
<local:MyIconButton Tag="2" ToolTip="{DynamicResource Common.Action.Refresh}" ToolTipService.Placement="Right"
|
|
ToolTipService.InitialShowDelay="200" ToolTipService.VerticalOffset="-1"
|
|
Click="RefreshButton_Click" LogoScale="0.85"
|
|
SvgIcon="lucide/refresh-cw" />
|
|
</x:Array>
|
|
</local:MyListItem.Buttons>
|
|
</local:MyListItem>
|
|
<TextBlock Text="{DynamicResource Instance.Saves.Left.QuickActions}" Margin="13,6,5,4" Opacity="0.6" FontSize="12" />
|
|
<local:MyListItem x:Name="BtnOpenFolder" Title="{DynamicResource Common.Action.OpenFolder}" IsScaleAnimationEnabled="False" Type="RadioBox"
|
|
MinPaddingRight="35" Height="36" VerticalAlignment="Top" LogoScale="0.8"
|
|
SvgIcon="lucide/folder-open" />
|
|
</StackPanel>
|
|
</local:MyPageLeft> |