MainPage.xaml.cs 437 B

1234567891011121314151617
  1. using Windows.UI.Xaml.Controls;
  2. // The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
  3. namespace SimpleViewer.Universal
  4. {
  5. /// <summary>
  6. /// An empty page that can be used on its own or navigated to within a Frame.
  7. /// </summary>
  8. public sealed partial class MainPage : Page
  9. {
  10. public MainPage()
  11. {
  12. InitializeComponent();
  13. }
  14. }
  15. }