CI / Go Backend (push) Canceled after 0s
初始化 monorepo: Go后端(7微服务) + Unity客户端(9模块) + 启动器 HTML5原型: Three.js 3D体素世界, Perlin噪声地形, 原版材质, 22种方块 Minecraft创造模式背包: 双栏布局, 拖拽移动物品, 方向性元件引脚 AI助搭策划文档 + 客户端/服务端骨架 + Docker Compose + CI
45 lines
2.9 KiB
XML
45 lines
2.9 KiB
XML
<Grid x:Class="PCL.MyMsgSelect"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:my="clr-namespace:PCL"
|
|
RenderTransformOrigin="0,0.5" UseLayoutRounding="True" SnapsToDevicePixels="True" MinWidth="400"
|
|
HorizontalAlignment="Center" VerticalAlignment="Center" Margin="25">
|
|
<Grid.RenderTransform>
|
|
<TransformGroup>
|
|
<RotateTransform x:Name="TransformRotate" Angle="-4" />
|
|
<TranslateTransform x:Name="TransformPos" X="0" Y="40" />
|
|
</TransformGroup>
|
|
</Grid.RenderTransform>
|
|
<Border Name="PanBorder" CornerRadius="7" Background="{DynamicResource ColorBrushBackground}">
|
|
<Border.Effect>
|
|
<DropShadowEffect Color="{DynamicResource ColorObjectMsgBoxShadow}" BlurRadius="20" ShadowDepth="2"
|
|
RenderingBias="Performance" Opacity="0.8" x:Name="EffectShadow" />
|
|
</Border.Effect>
|
|
<Grid Name="PanMain" VerticalAlignment="Top" Margin="22,22,22,23">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="2" />
|
|
<RowDefinition Height="13" />
|
|
<RowDefinition Height="1*" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock Grid.Row="0" FontSize="23" TextTrimming="None" Foreground="{DynamicResource ColorBrush2}"
|
|
HorizontalAlignment="Left" Name="LabTitle" Margin="7,-1,70,9" Text="测试标题文本"
|
|
VerticalAlignment="Top" SnapsToDevicePixels="False" UseLayoutRounding="False" />
|
|
<Rectangle x:Name="ShapeLine" Grid.Row="1" Height="2" Fill="{Binding Foreground, ElementName=LabTitle}" />
|
|
<my:MyScrollViewer Grid.Row="3" VerticalAlignment="Top" x:Name="PanCaption" Margin="0,0,0,17"
|
|
Padding="7,0,15,0"
|
|
VerticalScrollBarVisibility="Auto" HorizontalScrollBarVisibility="Disabled"
|
|
DeltaMult="0.7">
|
|
<StackPanel x:Name="PanSelection" Orientation="Vertical" />
|
|
</my:MyScrollViewer>
|
|
<StackPanel Grid.Row="4" Name="PanBtn" VerticalAlignment="Top" HorizontalAlignment="Right"
|
|
Margin="150,0,8,0" Orientation="Horizontal">
|
|
<my:MyButton ColorType="Normal" x:FieldModifier="public" Text="测试按钮1" x:Name="Btn1" Margin="12,0,0,0"
|
|
TextPadding="7" SnapsToDevicePixels="False" Padding="5,0" UseLayoutRounding="False" />
|
|
<my:MyButton ColorType="Normal" x:FieldModifier="public" Text="测试按钮2" x:Name="Btn2" Margin="12,0,0,0"
|
|
TextPadding="7" SnapsToDevicePixels="False" Padding="5,0" UseLayoutRounding="False" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</Border>
|
|
</Grid> |