mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 07:11:56 +01:00
28 lines
637 B
C#
28 lines
637 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Runtime.InteropServices.WindowsRuntime;
|
|||
|
using Windows.Foundation;
|
|||
|
using Windows.Foundation.Collections;
|
|||
|
using Windows.UI.Xaml;
|
|||
|
using Windows.UI.Xaml.Controls;
|
|||
|
using Windows.UI.Xaml.Controls.Primitives;
|
|||
|
using Windows.UI.Xaml.Data;
|
|||
|
using Windows.UI.Xaml.Input;
|
|||
|
using Windows.UI.Xaml.Media;
|
|||
|
using Windows.UI.Xaml.Navigation;
|
|||
|
|
|||
|
namespace Borepin.UWP
|
|||
|
{
|
|||
|
public sealed partial class MainPage
|
|||
|
{
|
|||
|
public MainPage()
|
|||
|
{
|
|||
|
this.InitializeComponent();
|
|||
|
|
|||
|
LoadApplication(new Borepin.App());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|