Push Changes from other Github

This commit is contained in:
2026-03-09 10:52:42 +01:00
parent c7306e8217
commit ff9add4081
48 changed files with 1857 additions and 1443 deletions

View File

@@ -0,0 +1,29 @@
using Heisig.HMI.AdsManager;
using System.Windows.Controls;
namespace InfineonHMI
{
/// <summary>
/// Interaktionslogik für OverviewPagePage.xaml
/// </summary>
public partial class OverviewPage : Page
{
public static string AdsVariableName = "GVL_SCADA.stMachine.Overview";
private static IAdsManager _adsManager;
public static OverviewPageVM CreateModel(IAdsManager adsManager)
{
return new(adsManager, AdsVariableName);
}
public static OverviewPage CreateView(OverviewPageVM model)
{
return new OverviewPage() { DataContext = model};
}
public OverviewPage()
{
InitializeComponent();
}
}
}