| 123456789101112131415161718192021222324252627282930313233343536 |
- <Window x:Class="AutoFocusTool.CalibWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="自动标定 · 16 well 总览" Height="900" Width="1400"
- FontFamily="Microsoft YaHei" Background="#1E1E1E" WindowState="Maximized">
- <Grid Margin="8">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="120"/>
- </Grid.RowDefinitions>
- <!-- 顶部:进度提示 + 控制 -->
- <Border Grid.Row="0" Background="#252526" Padding="10" CornerRadius="4">
- <StackPanel Orientation="Horizontal">
- <TextBlock x:Name="TxtBigProgress" Text="准备中..." FontSize="20" FontWeight="Bold"
- Foreground="#4EC9B0" VerticalAlignment="Center"/>
- <TextBlock x:Name="TxtSubProgress" Text="" FontSize="14"
- Foreground="#DCDCAA" VerticalAlignment="Center" Margin="20,0,0,0"/>
- <Button x:Name="BtnCalStop" Content="停止" Click="BtnCalStop_Click" Width="70"
- Margin="20,0,0,0" Background="#A1260D" Foreground="White"/>
- </StackPanel>
- </Border>
- <!-- 中部:16 well 网格(4x4),正在标定的格子实时显示画面 -->
- <UniformGrid x:Name="WellGrid" Grid.Row="1" Rows="4" Columns="4" Margin="0,8,0,8"/>
- <!-- 底部:仅当前参数/步骤文字(画面直接显示在上面对应well格内) -->
- <Border Grid.Row="2" Background="#252526" Padding="8" CornerRadius="4">
- <StackPanel VerticalAlignment="Center">
- <TextBlock x:Name="TxtCurParams" Text="当前: --" Foreground="White" FontSize="14"/>
- <TextBlock x:Name="TxtCurStep" Text="" Foreground="#DCDCAA" FontSize="13" Margin="0,4,0,0"/>
- </StackPanel>
- </Border>
- </Grid>
- </Window>
|