mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
16 lines
368 B
C#
16 lines
368 B
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using System;
|
|
|
|
namespace SourceGit.Views {
|
|
public partial class StashesPage : UserControl {
|
|
public StashesPage() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override void OnUnloaded(RoutedEventArgs e) {
|
|
base.OnUnloaded(e);
|
|
GC.Collect();
|
|
}
|
|
}
|
|
}
|