Refactors the old AngleDisplay code-behind into a clean MVVM implementation with AngleDisplayViewModel (PSG/INJ/Manual encoder angles, zero references, lock angle calculation with tolerance color coding) and a pure XAML view. Wires LockAngleFaseReady and PsgModeFaseReady test phase events. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
426 B
C#
17 lines
426 B
C#
using System.Windows.Controls;
|
|
|
|
namespace HC_APTBS.Views.UserControls
|
|
{
|
|
/// <summary>
|
|
/// Advance monitoring display for PSG, Injector, and Manual encoder angles.
|
|
/// All logic resides in <see cref="ViewModels.AngleDisplayViewModel"/>.
|
|
/// </summary>
|
|
public partial class AngleDisplayView : UserControl
|
|
{
|
|
public AngleDisplayView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|