Files
XplorePlane/XP.Calibration/Views/RotationCenterProgressWindow.xaml
2026-07-28 16:36:37 +08:00

30 lines
1.3 KiB
XML

<Window x:Class="XP.Calibration.Views.RotationCenterProgressWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:loc="clr-namespace:XP.Common.Localization.Extensions;assembly=XP.Common"
Title="{loc:Localization Cal_Title_Toolbox}"
Width="820" Height="860"
WindowStartupLocation="CenterScreen"
Background="Black">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- 实时显示区域 -->
<Image x:Name="DisplayImage" Grid.Row="0"
Stretch="Uniform" RenderOptions.BitmapScalingMode="NearestNeighbor"/>
<!-- 底部状态栏 -->
<Border Grid.Row="1" Background="#222222" Padding="10,6">
<StackPanel>
<TextBlock x:Name="StatusText" Foreground="White" FontSize="12"
Text="{loc:Localization Cal_Progress_WaitingStart}" TextWrapping="Wrap"/>
<ProgressBar x:Name="ProgressBar" Height="8" Margin="0,6,0,0"
Maximum="100" Value="0"/>
</StackPanel>
</Border>
</Grid>
</Window>