using System.Windows; using MatrixIO.IO; namespace BmffViewer { /// /// Interaction logic for App.xaml /// public partial class App : Application { private PortabilityFactory _pf = new BmffPortabilityFactory(); private void Application_Exit(object sender, ExitEventArgs e) { BmffViewer.Properties.Settings.Default.Save(); } } }