Example #1
0
        public Startup(IConfiguration configuration)
        {
            Configuration = configuration;

            AppFrame app = AppFrame.GetAppFrame();

            app.Start();
        }
Example #2
0
 public static AppFrame GetAppFrame()
 {
     lock (lockObj)
     {
         if (app == null)
         {
             app = new AppFrame();
         }
     }
     return(app);
 }