Bundles several feature streams that have been iterating on the working tree: - Developer Tools page (Debug-only via DEVELOPER_TOOLS symbol): hosts the identification card, manual KWP write + transaction log, ROM/EEPROM dump card with progress banner and completion message, persisted custom-commands library, persisted EEPROM passwords library. New service primitives: IKwpService.SendRawCustomAsync / ReadEepromAsync / ReadRomEepromAsync. Persistence mirrors the Clients XML pattern in two new files (custom_commands.xml, eeprom_passwords.xml). - Auto-test orchestrator (IAutoTestOrchestrator + AutoTestState): linear K-Line read -> unlock -> bench-on -> test sequence with snackbar UI and progress dialog VM, gated on dashboard alarms. - BIP-STATUS display: BipDisplayViewModel + BipDisplayView, RAM read at 0x0106 via IKwpService.ReadBipStatusAsync; status definitions in BipStatusDefinition. - Tests page redesign: TestSectionCard + PhaseTileView replacing the old TestPlanView/TestRunningView/TestDoneView/TestPreconditionsView/ TestSectionView controls and their VMs. - Pump command sliders: Fluent thick-track style with overhang thumb, click-anywhere-and-drag, mouse-wheel adjustment. - Window startup: app.manifest declares PerMonitorV2 DPI awareness, MainWindow installs a WM_GETMINMAXINFO hook in OnSourceInitialized and maximizes there (after the hook is in place) so the app fits the work area exactly on any display configuration. - Misc: PercentToPixelsConverter, seed_aliases.py one-shot pump-alias importer, tools/Import-BipStatus.ps1, kline_eeprom_spec.md and dump-functions reference docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
64 lines
2.8 KiB
XML
64 lines
2.8 KiB
XML
<Window x:Class="HC_APTBS.Views.Dialogs.RpmSafetyWarningDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
mc:Ignorable="d"
|
|
Title="{DynamicResource Dialog.RpmSafety.Title}"
|
|
Height="280" Width="460"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterOwner">
|
|
|
|
<Grid Margin="16,12">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="Auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="48"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- Warning icon -->
|
|
<TextBlock Grid.RowSpan="5" Text="⚠"
|
|
FontSize="36" Foreground="DarkOrange"
|
|
VerticalAlignment="Top" HorizontalAlignment="Center"
|
|
Margin="0,4,8,0"/>
|
|
|
|
<!-- Title -->
|
|
<TextBlock Grid.Column="1" Text="{DynamicResource Common.Warning}"
|
|
FontSize="18" FontWeight="Bold" Foreground="DarkOrange"
|
|
Margin="0,0,0,8"/>
|
|
|
|
<!-- Warning message -->
|
|
<TextBlock Grid.Row="1" Grid.Column="1" TextWrapping="Wrap"
|
|
Margin="0,0,0,12"
|
|
Text="{DynamicResource Dialog.RpmSafety.Message}"/>
|
|
|
|
<!-- Option 1: Turn on oil and proceed -->
|
|
<RadioButton Grid.Row="2" Grid.Column="1" Margin="0,4"
|
|
GroupName="RpmSafety"
|
|
IsChecked="{Binding IsOilAndProceedSelected}"
|
|
Content="{DynamicResource Dialog.RpmSafety.OilAndProceed}"/>
|
|
|
|
<!-- Option 2: Proceed without oil -->
|
|
<RadioButton Grid.Row="3" Grid.Column="1" Margin="0,4"
|
|
GroupName="RpmSafety"
|
|
IsChecked="{Binding IsProceedWithoutOilSelected}"
|
|
Content="{DynamicResource Dialog.RpmSafety.ProceedWithout}"/>
|
|
|
|
<!-- Buttons -->
|
|
<StackPanel Grid.Row="5" Grid.Column="1"
|
|
Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,12,0,0">
|
|
<Button Content="{DynamicResource Common.Accept}" Width="80" Height="32" Margin="0,0,8,0"
|
|
Command="{Binding AcceptCommand}"/>
|
|
<Button Content="{DynamicResource Common.Cancel}" Width="80" Height="32"
|
|
Command="{Binding CancelCommand}" IsCancel="True"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|