初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器 HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块 Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚 AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
<Grid
|
||||
x:Class="PCL.MyLocalCompItem"
|
||||
x:Name="PanBack"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:local="clr-namespace:PCL;assembly="
|
||||
Height="44"
|
||||
Background="{StaticResource ColorBrushSemiTransparent}"
|
||||
RenderTransformOrigin="0.5,0.5"
|
||||
SnapsToDevicePixels="True">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="6" />
|
||||
<ColumnDefinition Width="34" />
|
||||
<ColumnDefinition Width="7" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition Width="1*" />
|
||||
<ColumnDefinition x:Name="ColumnPaddingRight" Width="4" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="1*" />
|
||||
<RowDefinition Height="20" />
|
||||
<RowDefinition Height="18" />
|
||||
<RowDefinition Height="1*" />
|
||||
</Grid.RowDefinitions>
|
||||
<!-- Logo -->
|
||||
<local:MyImage
|
||||
x:Name="PathLogo"
|
||||
Grid.Row="1"
|
||||
Grid.RowSpan="2"
|
||||
Grid.Column="1"
|
||||
Width="34"
|
||||
Height="34"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Center"
|
||||
CornerRadius="6"
|
||||
FallbackSource="pack://application:,,,/images/Icons/NoIcon.png"
|
||||
IsHitTestVisible="False"
|
||||
RenderOptions.BitmapScalingMode="HighQuality"
|
||||
SnapsToDevicePixels="True" />
|
||||
<!-- 标题 -->
|
||||
<Grid
|
||||
x:Name="PanTitle"
|
||||
Grid.Row="1"
|
||||
Grid.Column="3"
|
||||
Grid.ColumnSpan="2"
|
||||
Margin="0,1,0,0"
|
||||
VerticalAlignment="Center"
|
||||
SnapsToDevicePixels="False"
|
||||
UseLayoutRounding="False">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition x:Name="ColumnTitle" Width="Auto" />
|
||||
<ColumnDefinition x:Name="ColumnSubtitle" Width="Auto" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
<ColumnDefinition x:Name="ColumnExtend" Width="1*" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<TextBlock
|
||||
x:Name="LabTitle"
|
||||
FontSize="14"
|
||||
IsHitTestVisible="False"
|
||||
TextTrimming="CharacterEllipsis" />
|
||||
<TextBlock
|
||||
x:Name="LabSubtitle"
|
||||
Grid.Column="1"
|
||||
HorizontalAlignment="Left"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
Foreground="{DynamicResource ColorBrushGray1}"
|
||||
IsHitTestVisible="False"
|
||||
Opacity="0.4"
|
||||
TextTrimming="CharacterEllipsis"
|
||||
Visibility="Collapsed" />
|
||||
<!-- 更新按钮 -->
|
||||
<local:MyIconButton
|
||||
x:Name="BtnUpdate"
|
||||
Grid.Column="2"
|
||||
Width="21"
|
||||
Height="21"
|
||||
Margin="-2,-1.6,0,0"
|
||||
SvgIcon="lucide/upload"
|
||||
Opacity="0.4"
|
||||
Theme="Black"
|
||||
ToolTipService.InitialShowDelay="100"
|
||||
ToolTipService.Placement="Right"
|
||||
ToolTipService.VerticalOffset="-9"
|
||||
Visibility="Collapsed" />
|
||||
</Grid>
|
||||
<!-- Tag 与 详情 -->
|
||||
<StackPanel
|
||||
x:Name="PanTags"
|
||||
Grid.Row="2"
|
||||
Grid.Column="3"
|
||||
Margin="-1,0,1,0"
|
||||
VerticalAlignment="Center"
|
||||
IsHitTestVisible="False"
|
||||
Orientation="Horizontal"
|
||||
Visibility="Collapsed">
|
||||
<!--<corelocal:BlurBorder Background="{DynamicResource ColorBrush6}" Padding="3,1" CornerRadius="3" Margin="0,0,4,0" SnapsToDevicePixels="True" UseLayoutRounding="False">
|
||||
<TextBlock Text="科技" Foreground="{DynamicResource ColorBrush2}" FontSize="11" />
|
||||
</corelocal:BlurBorder>-->
|
||||
</StackPanel>
|
||||
<TextBlock
|
||||
x:Name="LabInfo"
|
||||
Grid.Row="2"
|
||||
Grid.Column="4"
|
||||
Margin="0,0,3,1"
|
||||
VerticalAlignment="Center"
|
||||
FontSize="12"
|
||||
Foreground="{DynamicResource ColorBrushGray4}"
|
||||
IsHitTestVisible="False"
|
||||
SnapsToDevicePixels="False"
|
||||
TextTrimming="CharacterEllipsis"
|
||||
UseLayoutRounding="False" />
|
||||
</Grid>
|
||||
Reference in New Issue
Block a user