sfl.xaml.cs 859 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Runtime.InteropServices.WindowsRuntime;
  6. using Windows.Foundation;
  7. using Windows.Foundation.Collections;
  8. using Microsoft.UI.Xaml;
  9. using Microsoft.UI.Xaml.Controls;
  10. using Microsoft.UI.Xaml.Controls.Primitives;
  11. using Microsoft.UI.Xaml.Data;
  12. using Microsoft.UI.Xaml.Input;
  13. using Microsoft.UI.Xaml.Media;
  14. using Microsoft.UI.Xaml.Navigation;
  15. // To learn more about WinUI, the WinUI project structure,
  16. // and more about our project templates, see: http://aka.ms/winui-project-info.
  17. namespace ArchivesCenter4
  18. {
  19. /// <summary>
  20. /// An empty page that can be used on its own or navigated to within a Frame.
  21. /// </summary>
  22. public sealed partial class sfl : Page
  23. {
  24. public sfl()
  25. {
  26. this.InitializeComponent();
  27. }
  28. }
  29. }