16 lines
359 B
C#
16 lines
359 B
C#
using System.Windows.Controls;
|
|
|
|
namespace HC_APTBS.Views.UserControls
|
|
{
|
|
/// <summary>
|
|
/// Manual pump control sliders (FBKW, ME, PreIn) with configurable min/max/step popups.
|
|
/// </summary>
|
|
public partial class PumpControlView : UserControl
|
|
{
|
|
public PumpControlView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|