Files
2026-04-18 18:14:12 +08:00

115 lines
6.1 KiB
XML

<Window x:Class="HeadHoodFieldOfViewTester.LanguageSelectWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="头罩视野测试仪 - 语言选择"
Height="800" Width="1200"
WindowStartupLocation="CenterScreen"
Background="#FFE0E5ED">
<Grid>
<!-- 背景科技风装饰 -->
<Grid.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="#FFB0C4DE" Offset="0"/>
<GradientStop Color="#FFE6F2FF" Offset="0.5"/>
<GradientStop Color="#FFD3D3D3" Offset="1"/>
</LinearGradientBrush>
</Grid.Background>
<!-- 科技感环形装饰 -->
<Canvas>
<!-- 左侧中文按钮环形 -->
<Ellipse Width="220" Height="220" Canvas.Left="200" Canvas.Top="250"
Stroke="#FF40E0FF" StrokeThickness="3" Opacity="0.7"/>
<Ellipse Width="180" Height="180" Canvas.Left="220" Canvas.Top="270"
Stroke="#FF87CEFA" StrokeThickness="2" Opacity="0.5"/>
<!-- 右侧英文按钮环形 -->
<Ellipse Width="220" Height="220" Canvas.Left="780" Canvas.Top="250"
Stroke="#FF40E0FF" StrokeThickness="3" Opacity="0.7"/>
<Ellipse Width="180" Height="180" Canvas.Left="800" Canvas.Top="270"
Stroke="#FF87CEFA" StrokeThickness="2" Opacity="0.5"/>
</Canvas>
<!-- 左上角/右上角/左下角 占位框 (FK_0/FK_1/FK_4) -->
<!-- FK_0 标题占位 -->
<Border x:Name="FK_0" BorderBrush="White" BorderThickness="1"
Width="600" Height="80" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,20,0,0">
<TextBlock Text="FK_0" Foreground="Red" FontSize="14" VerticalAlignment="Top"/>
</Border>
<!-- FK_1 右上角占位 -->
<Border x:Name="FK_1" BorderBrush="White" BorderThickness="1"
Width="200" Height="150" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,20,20,0">
<TextBlock Text="FK_1" Foreground="Red" FontSize="14" VerticalAlignment="Top"/>
</Border>
<!-- FK_4 左下角占位 -->
<Border x:Name="FK_4" BorderBrush="White" BorderThickness="1"
Width="200" Height="150" HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="20,0,0,20">
<TextBlock Text="FK_4" Foreground="Red" FontSize="14" VerticalAlignment="Top"/>
</Border>
<!-- TX_0 左下角文字 -->
<TextBlock x:Name="TX_0" Text="TX_0" Foreground="Red" FontSize="14"
HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="80,0,0,5"/>
<!-- 主标题 TX_1 -->
<TextBlock x:Name="TX_1" Text="头罩视野测试仪"
FontSize="48" FontWeight="Bold"
Foreground="Red"
TextDecorations="Underline"
HorizontalAlignment="Center"
VerticalAlignment="Top" Margin="0,30,0,0"/>
<!-- 左侧中文按钮 (SW_1) -->
<Button x:Name="SW_1"
Width="180" Height="180"
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="220,0,0,0"
Background="#FF1E3A5F" BorderBrush="#FF40E0FF" BorderThickness="2"
CornerRadius="90" Cursor="Hand"
ToolTip="SW_1 (LW-9134 (16bit): 当前所使用的语言)">
<Grid>
<!-- 按钮内部装饰 -->
<Ellipse Width="160" Height="160" Stroke="#FF40E0FF" StrokeThickness="2" Opacity="0.6"/>
<Ellipse Width="140" Height="140" Stroke="#FF87CEFA" StrokeThickness="1" Opacity="0.4"/>
<!-- 点击手势图标 -->
<TextBlock FontFamily="Segoe MDL2 Assets" FontSize="40" Text="&#xE72A;"
Foreground="#FFFFD700" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-20,0,0"/>
<!-- 中文文字 TX_2 -->
<TextBlock x:Name="TX_2" Text="中文"
FontSize="36" FontWeight="Bold"
Foreground="#FFFFD700"
HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,20"/>
</Grid>
</Button>
<!-- 右侧英文按钮 (SW_2) -->
<Button x:Name="SW_2"
Width="180" Height="180"
HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,0,220,0"
Background="#FF1E3A5F" BorderBrush="#FF40E0FF" BorderThickness="2"
CornerRadius="90" Cursor="Hand"
ToolTip="SW_2 (LW-9134 (16bit): 当前所使用的语言)">
<Grid>
<!-- 按钮内部装饰 -->
<Ellipse Width="160" Height="160" Stroke="#FF40E0FF" StrokeThickness="2" Opacity="0.6"/>
<Ellipse Width="140" Height="140" Stroke="#FF87CEFA" StrokeThickness="1" Opacity="0.4"/>
<!-- 点击手势图标 -->
<TextBlock FontFamily="Segoe MDL2 Assets" FontSize="40" Text="&#xE72A;"
Foreground="#FFFFD700" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,-20,0,0"/>
<!-- 英文文字 -->
<TextBlock Text="English"
FontSize="36" FontWeight="Bold"
Foreground="#FFFFD700"
HorizontalAlignment="Center" VerticalAlignment="Bottom" Margin="0,0,0,20"/>
</Grid>
</Button>
<!-- 按钮标注文字 -->
<TextBlock Text="SW_1 (LW-9134 (16bit): 当前所使用的语言)"
Foreground="Red" FontSize="14"
HorizontalAlignment="Left" VerticalAlignment="Center" Margin="220,180,0,0"/>
<TextBlock Text="SW_2 (LW-9134 (16bit): 当前所使用的语言)"
Foreground="Red" FontSize="14"
HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,180,220,0"/>
</Grid>
</Window>