- Replace sub-nav + HiddenTabsTabControl with 3-column Fluent card layout: PumpCommandsCard (vertical ME/FBKW/PreIn sliders) + DfiCalibrationCard / PumpLiveDataCard (KPI tiles + RPM rolling chart + redesigned status bytes) / PumpIdentificationCard + DtcCard - Add PumpTopStripView: pump selector, model badge, CAN + K-Line chips - Move immobilizer unlock to MainWindow bottom snackbar (UnlockSnackbarView): auto-close on success after 3 s, persist on failure with manual Dismiss - Redesign StatusDisplayView to 2×8 rounded 28px tiles with bit index + tooltip - Add NullToVisibilityConverter; add SnackbarShell, PumpCard, and related styles - Delete obsolete views: UnlockProgressDialog, UnlockPanelView, PumpIdentificationPanelView, PumpLiveDataView, DfiManageView, DtcListView, PumpControlView - PumpPageViewModel: remove PumpSubPage enum, add RpmChart wired to Root.PumpRpm Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
232 lines
14 KiB
XML
232 lines
14 KiB
XML
<UserControl x:Class="HC_APTBS.Views.UserControls.PumpCommandsCard"
|
|
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"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="460" d:DesignWidth="260"
|
|
IsEnabled="{Binding IsEnabled}">
|
|
|
|
<!-- DataContext = PumpControlViewModel (via {Binding PumpControl}) -->
|
|
<UserControl.Resources>
|
|
<BooleanToVisibilityConverter x:Key="BoolToVis"/>
|
|
|
|
<Style x:Key="SettingsTextBox" TargetType="TextBox">
|
|
<Setter Property="Width" Value="44"/>
|
|
<Setter Property="HorizontalContentAlignment" Value="Center"/>
|
|
<Setter Property="VerticalAlignment" Value="Top"/>
|
|
<Setter Property="FontSize" Value="13"/>
|
|
</Style>
|
|
|
|
<Style x:Key="SettingsLabel" TargetType="TextBlock">
|
|
<Setter Property="VerticalAlignment" Value="Bottom"/>
|
|
<Setter Property="FontSize" Value="11"/>
|
|
<Setter Property="Foreground" Value="White"/>
|
|
<Setter Property="Margin" Value="0,2,0,0"/>
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
</Style>
|
|
</UserControl.Resources>
|
|
|
|
<Border Style="{StaticResource PumpCard}">
|
|
<DockPanel LastChildFill="True">
|
|
|
|
<!-- ── Card header ───────────────────────────────────────────── -->
|
|
<DockPanel DockPanel.Dock="Top" Margin="0,0,0,12">
|
|
<ui:SymbolIcon DockPanel.Dock="Left" Symbol="ArrowTrendingLines24" FontSize="16"
|
|
Foreground="{DynamicResource AccentTextFillColorPrimaryBrush}"
|
|
Margin="0,0,8,0" VerticalAlignment="Center"/>
|
|
<TextBlock Text="{DynamicResource Pump.Commands.Title}"
|
|
Style="{StaticResource PumpCardHeader}" Margin="0"/>
|
|
</DockPanel>
|
|
|
|
<!-- ── Slider columns ────────────────────────────────────────── -->
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<!-- PreIn: collapses when not applicable -->
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- ── FBKW ────────────────────────────────────────────── -->
|
|
<StackPanel Grid.Column="0" HorizontalAlignment="Center">
|
|
<!-- Settings toggle -->
|
|
<ToggleButton x:Name="FbkwToggle"
|
|
Width="28" Height="22"
|
|
HorizontalAlignment="Center"
|
|
Background="Transparent" BorderBrush="Transparent"
|
|
Content="..." FontWeight="Bold" FontSize="13"
|
|
ToolTip="{DynamicResource PumpCtrl.MinStepMax}"/>
|
|
|
|
<!-- Max label -->
|
|
<TextBlock Text="{Binding FbkwMax, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,4,0,2"/>
|
|
|
|
<!-- Vertical slider -->
|
|
<Slider Orientation="Vertical"
|
|
Minimum="{Binding FbkwMin}" Maximum="{Binding FbkwMax}"
|
|
Value="{Binding FbkwValue}"
|
|
TickFrequency="{Binding FbkwStep}"
|
|
TickPlacement="TopLeft"
|
|
IsSnapToTickEnabled="True"
|
|
AutoToolTipPrecision="2"
|
|
Height="240" Width="32"
|
|
HorizontalAlignment="Center"
|
|
Focusable="False"/>
|
|
|
|
<!-- Min label -->
|
|
<TextBlock Text="{Binding FbkwMin, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,2,0,6"/>
|
|
|
|
<!-- Editable value box -->
|
|
<TextBox Text="{Binding FbkwValue, UpdateSourceTrigger=PropertyChanged, StringFormat=F2}"
|
|
Style="{StaticResource PumpCommandValue}"/>
|
|
|
|
<!-- Parameter name -->
|
|
<TextBlock Text="{DynamicResource Pump.Commands.Fbkw}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,6,0,0"/>
|
|
|
|
<!-- Settings popup -->
|
|
<Popup IsOpen="{Binding IsChecked, ElementName=FbkwToggle}"
|
|
StaysOpen="False" Placement="Bottom" AllowsTransparency="True">
|
|
<Border Background="#BB000000" Padding="8,6" CornerRadius="3">
|
|
<UniformGrid Columns="3" Width="180">
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding FbkwMin, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Min}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding FbkwStep, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Step}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding FbkwMax, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Max}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
</UniformGrid>
|
|
</Border>
|
|
</Popup>
|
|
</StackPanel>
|
|
|
|
<!-- ── ME ──────────────────────────────────────────────── -->
|
|
<StackPanel Grid.Column="1" HorizontalAlignment="Center">
|
|
<ToggleButton x:Name="MeToggle"
|
|
Width="28" Height="22"
|
|
HorizontalAlignment="Center"
|
|
Background="Transparent" BorderBrush="Transparent"
|
|
Content="..." FontWeight="Bold" FontSize="13"
|
|
ToolTip="{DynamicResource PumpCtrl.MinStepMax}"/>
|
|
|
|
<TextBlock Text="{Binding MeMax, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,4,0,2"/>
|
|
|
|
<Slider Orientation="Vertical"
|
|
Minimum="{Binding MeMin}" Maximum="{Binding MeMax}"
|
|
Value="{Binding MeValue}"
|
|
TickFrequency="{Binding MeStep}"
|
|
TickPlacement="TopLeft"
|
|
IsSnapToTickEnabled="False"
|
|
AutoToolTipPrecision="2"
|
|
Height="240" Width="32"
|
|
HorizontalAlignment="Center"
|
|
Focusable="False"/>
|
|
|
|
<TextBlock Text="{Binding MeMin, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,2,0,6"/>
|
|
|
|
<TextBox Text="{Binding MeValue, UpdateSourceTrigger=PropertyChanged, StringFormat=F2}"
|
|
Style="{StaticResource PumpCommandValue}"/>
|
|
|
|
<TextBlock Text="{DynamicResource Pump.Commands.Me}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,6,0,0"/>
|
|
|
|
<Popup IsOpen="{Binding IsChecked, ElementName=MeToggle}"
|
|
StaysOpen="False" Placement="Bottom" AllowsTransparency="True">
|
|
<Border Background="#BB000000" Padding="8,6" CornerRadius="3">
|
|
<UniformGrid Columns="3" Width="180">
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding MeMin, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Min}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding MeStep, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Step}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding MeMax, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Max}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
</UniformGrid>
|
|
</Border>
|
|
</Popup>
|
|
</StackPanel>
|
|
|
|
<!-- ── PreIn (conditional) ─────────────────────────────── -->
|
|
<StackPanel Grid.Column="2" HorizontalAlignment="Center"
|
|
Visibility="{Binding IsPreInVisible, Converter={StaticResource BoolToVis}}">
|
|
<ToggleButton x:Name="PreInToggle"
|
|
Width="28" Height="22"
|
|
HorizontalAlignment="Center"
|
|
Background="Transparent" BorderBrush="Transparent"
|
|
Content="..." FontWeight="Bold" FontSize="13"
|
|
ToolTip="{DynamicResource PumpCtrl.MinStepMax}"/>
|
|
|
|
<TextBlock Text="{Binding PreInMax, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,4,0,2"/>
|
|
|
|
<Slider Orientation="Vertical"
|
|
Minimum="{Binding PreInMin}" Maximum="{Binding PreInMax}"
|
|
Value="{Binding PreInValue}"
|
|
TickFrequency="{Binding PreInStep}"
|
|
TickPlacement="TopLeft"
|
|
IsSnapToTickEnabled="True"
|
|
AutoToolTipPrecision="2"
|
|
Height="240" Width="32"
|
|
HorizontalAlignment="Center"
|
|
Focusable="False"/>
|
|
|
|
<TextBlock Text="{Binding PreInMin, StringFormat=F1}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,2,0,6"/>
|
|
|
|
<TextBox Text="{Binding PreInValue, UpdateSourceTrigger=PropertyChanged, StringFormat=F2}"
|
|
Style="{StaticResource PumpCommandValue}"/>
|
|
|
|
<TextBlock Text="{DynamicResource Pump.Commands.PreIn}"
|
|
Style="{StaticResource PumpCommandLabel}"
|
|
Margin="0,6,0,0"/>
|
|
|
|
<Popup IsOpen="{Binding IsChecked, ElementName=PreInToggle}"
|
|
StaysOpen="False" Placement="Bottom" AllowsTransparency="True">
|
|
<Border Background="#BB000000" Padding="8,6" CornerRadius="3">
|
|
<UniformGrid Columns="3" Width="180">
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding PreInMin, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Min}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding PreInStep, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Step}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
<StackPanel HorizontalAlignment="Center">
|
|
<TextBox Text="{Binding PreInMax, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource SettingsTextBox}"/>
|
|
<TextBlock Text="{DynamicResource PumpCtrl.Max}" Style="{StaticResource SettingsLabel}"/>
|
|
</StackPanel>
|
|
</UniformGrid>
|
|
</Border>
|
|
</Popup>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</DockPanel>
|
|
</Border>
|
|
</UserControl>
|