예제 #1
0
 private void bt_help_Click(object sender, RoutedEventArgs e)
 {
     helpWin = new VZ_ZoneHelpWindow();
     helpWin.Show();
     //VZ_FinishV2Window win = new VZ_FinishV2Window();
     //win.Show();
 }
예제 #2
0
 private void PriceTimer_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
 {
     if (VZ_AppHelper.GetInstance().payInfo == null)
     {
         return;
     }
     updatePrice();
     VZ_AppProcessHelper.getSingleton().quitSteamVRHome();
     if ((VZ_AppHelper.GetInstance().payInfo.expire > VZ_AppHelper.GetInstance().payInfo.current_time) || VZ_AppHelper.GetInstance().systemInfo.isDebug)
     {
         Dispatcher.BeginInvoke((Action)(() =>
         {
             isEnterGame = true;
             //VZDownloadManager.getSingleton().pause();
             MainWindow win = new MainWindow();
             win.Show();
             if (helpWin != null && helpWin.IsVisible)
             {
                 helpWin.Close();
                 helpWin = null;
             }
             this.Close();
         }));
     }
 }
예제 #3
0
        private void Tile_Click(object sender, RoutedEventArgs e)
        {
            VZ_ZoneHelpWindow win = new VZ_ZoneHelpWindow();

            win.Show();
        }