Add PamhagenSysCtrl

This commit is contained in:
2026-07-07 13:53:16 +02:00
parent db22c87ebe
commit 08d12d5307
16 changed files with 825 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using PamhagenSysCtrl.Helpers;
using System.Windows;
using System.Windows.Threading;
namespace PamhagenSysCtrl {
public partial class App : Application {
public static PamhagenPlant? Plant;
public static Dispatcher MainDispatcher;
public App() :
base() {
MainDispatcher = Dispatcher;
}
protected override async void OnStartup(StartupEventArgs evt) {
base.OnStartup(evt);
}
protected async void Application_Exit(object sender, ExitEventArgs evt) {
Plant?.Dispose();
}
}
}