27 lines
600 B
C#
27 lines
600 B
C#
using Heisig.HMI.AdsManager;
|
|
using System.Windows.Controls;
|
|
|
|
namespace InfineonHMI;
|
|
|
|
/// <summary>
|
|
/// Interaktionslogik für AutomaticModePage.xaml
|
|
/// </summary>
|
|
public partial class TrayFeederPage : Page
|
|
{
|
|
public static string AdsVariableName = "GVL_SCADA.stMachine";
|
|
|
|
public static TrayFeederPageVM CreateModel(IAdsManager adsManager)
|
|
{
|
|
return new(adsManager, AdsVariableName);
|
|
}
|
|
|
|
public static TrayFeederPage CreateView(TrayFeederPageVM model)
|
|
{
|
|
return new TrayFeederPage { DataContext = model };
|
|
}
|
|
|
|
public TrayFeederPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |