Push Changes from other Github
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Windows.Controls;
|
||||
using Heisig.HMI.AdsManager;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace InfineonHMI;
|
||||
|
||||
@@ -7,11 +8,22 @@ namespace InfineonHMI;
|
||||
/// </summary>
|
||||
public partial class AlignmentStationPage : Page
|
||||
{
|
||||
public AlignmentStationPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
// Unloaded += OnUnloaded;
|
||||
}
|
||||
public static string AdsVariableName = "GVL_SCADA.stMachine.TrayFeeder";
|
||||
|
||||
public static AlignmentStationPageVM CreateModel(IAdsManager adsManager)
|
||||
{
|
||||
return new(adsManager, AdsVariableName);
|
||||
}
|
||||
|
||||
public static AlignmentStationPage CreateView(AlignmentStationPageVM model)
|
||||
{
|
||||
return new AlignmentStationPage { DataContext = model };
|
||||
}
|
||||
|
||||
public AlignmentStationPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void OnUnloaded(object? sender, EventArgs e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user