CI / Go Backend (push) Canceled after 0s
初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器 HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块 Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚 AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
42 lines
2.4 KiB
XML
42 lines
2.4 KiB
XML
<Grid
|
|
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"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:svgIcon="clr-namespace:PCL.Core.UI.Controls.SvgIcon;assembly=PCL.Core"
|
|
x:Name="PanBack" mc:Ignorable="d" x:Class="PCL.MyExtraTextButton"
|
|
RenderTransformOrigin="0.5,0.5" ToolTipService.Placement="Left" Height="52" Margin="20">
|
|
<Grid.RenderTransform>
|
|
<ScaleTransform ScaleX="0" ScaleY="0" />
|
|
</Grid.RenderTransform>
|
|
<Border x:Name="PanClick" BorderThickness="0.001" Background="{StaticResource ColorBrushSemiTransparent}"
|
|
CornerRadius="{Binding ActualHeight, ConverterParameter=0.4, Converter={StaticResource MultiplicationConverter}, ElementName=PanBack, Mode=OneWay}" />
|
|
<Grid x:Name="PanScale" IsHitTestVisible="False" RenderTransformOrigin="0.5,0.5" Margin="0,10,0,0">
|
|
<Grid.RenderTransform>
|
|
<ScaleTransform />
|
|
</Grid.RenderTransform>
|
|
<Border x:Name="PanColor" BorderThickness="0.001" Background="{DynamicResource ColorBrush3}"
|
|
CornerRadius="{Binding ActualHeight, ConverterParameter=0.4, Converter={StaticResource MultiplicationConverter}, ElementName=PanBack, Mode=OneWay}">
|
|
<Border.Effect>
|
|
<DropShadowEffect ShadowDepth="0" BlurRadius="10" Opacity="0.2" />
|
|
</Border.Effect>
|
|
</Border>
|
|
<StackPanel Orientation="Horizontal" Margin="20,0" SnapsToDevicePixels="False" UseLayoutRounding="False">
|
|
<Grid x:Name="IconHost" Width="16" Margin="2,12,0,12" RenderTransformOrigin="0.5,0.5">
|
|
<Grid.RenderTransform>
|
|
<ScaleTransform />
|
|
</Grid.RenderTransform>
|
|
<Path x:Name="Path"
|
|
Stretch="Uniform"
|
|
Fill="{DynamicResource ColorBrush8}" />
|
|
<svgIcon:SvgIcon x:Name="ShapeSvgIcon"
|
|
Stretch="Uniform"
|
|
Visibility="Collapsed"
|
|
IconBrush="{Binding Fill, ElementName=Path}" />
|
|
</Grid>
|
|
<TextBlock x:Name="LabText" VerticalAlignment="Center" Foreground="{DynamicResource ColorBrush8}"
|
|
FontSize="16"
|
|
Margin="12,0,0,0.8" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid> |