| 123456789101112131415161718192021 |
- using System;
- using System.Windows.Controls;
- namespace LocalhostMES.Views.Tabs
- {
- public partial class ApiTestView : UserControl
- {
- public ApiTestView()
- {
- InitializeComponent();
- }
- private void ApiTestView_OnUnloaded(object sender, System.Windows.RoutedEventArgs e)
- {
- if (DataContext is IDisposable d)
- {
- d.Dispose();
- }
- }
- }
- }
|