internal void LoadBrowser()
 {
     this.mBrowser = new BrowserControl();
     this.mBrowser.BrowserLoadCompleteEvent += new System.Action(this.BrowserLoadCompleteEvent);
     this.mBrowser.InitBaseControl(BlueStacksUIUtils.GetUtcConverterUrl(this.PackageName), 0.0f);
     this.mBrowser.ParentWindow = this.ParentWindow;
     this.mBrowserGrid.Children.Add((UIElement)this.mBrowser);
     this.mBrowser.CreateNewBrowser();
     this.dispatcherTimer          = new DispatcherTimer();
     this.dispatcherTimer.Tick    += new EventHandler(this.DispatcherTimer_Tick);
     this.dispatcherTimer.Interval = new TimeSpan(0, 0, 20);
     this.dispatcherTimer.Start();
 }