23 lines
503 B
C#
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();
|
|
}
|
|
}
|
|
}
|