App.xaml.cs 422 B

123456789101112131415161718
  1. using System.Windows;
  2. using MatrixIO.IO;
  3. namespace BmffViewer
  4. {
  5. /// <summary>
  6. /// Interaction logic for App.xaml
  7. /// </summary>
  8. public partial class App : Application
  9. {
  10. private PortabilityFactory _pf = new BmffPortabilityFactory();
  11. private void Application_Exit(object sender, ExitEventArgs e)
  12. {
  13. BmffViewer.Properties.Settings.Default.Save();
  14. }
  15. }
  16. }