Files
infineon_cs_hmi/uniper_hmi/UniperHMI/SettingsPage/SettingsPage.xaml.cs
2026-02-27 16:09:59 +01:00

23 lines
503 B
C#

using System.Windows.Controls;
namespace InfineonHMI
{
/// <summary>
/// Interaktionslogik für SettingsPageView.xaml
/// </summary>
public partial class SettingsPage : Page
{
public SettingsPage()
{
InitializeComponent();
Unloaded += OnUnloaded;
}
private void OnUnloaded(object? sender, EventArgs e)
{
var disposable = DataContext as IDisposable;
disposable?.Dispose();
}
}
}