public AppMobiPage()
        {
            this.InitializeComponent();

            amWebView = new appMobiWebView(webView, appMobiPage, new Uri("ms-appx-web:///html/index.html"));

            // Implement splash screen handler
            amWebView.HideSplashScreen += amWebView_HideSplashScreen;
        }
        public AppMobiPage()
        {
            this.InitializeComponent();

            amWebView = new appMobiWebView(webView, appMobiPage, new Uri("ms-appx-web:///html/index.html"));

            // Implement splash screen handler
            amWebView.HideSplashScreen += amWebView_HideSplashScreen;
        }
        public AppMobiPage()
        {
            InitializeComponent();

            // phone:WebBrowser will serve up the files
            //amWebView = new appMobiWebView(webView, phoneApplicationPage, "html/index.html");

            // appMobiServer will serve up the files
            amWebView = new appMobiWebView(webView, phoneApplicationPage, "http://localhost:5888/index.html");
        }
        public AppMobiPage()
        {
            InitializeComponent();

            // phone:WebBrowser will serve up the files
            //amWebView = new appMobiWebView(webView, phoneApplicationPage, "html/index.html");
            // appMobiServer will serve up the files
            amWebView = new appMobiWebView(webView, phoneApplicationPage, "http://localhost:5888/index.html");

            // Implement splash screen handler
            amWebView.HideSplashScreen += amWebView_HideSplashScreen;
        }
        // Constructor
        public MainPage()
        {
            InitializeComponent();

            amWebView = new appMobiWebView(webView, phoneApplicationPage, "html/index.html");
        }