Program.cs
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Box2D.Net;
  5. using System.Windows.Forms;
  6. namespace TestBed.Net
  7. {
  8.     class Program
  9.     {
  10.         static void Main(string[] args)
  11.         {
  12.             Console.Title = "Box2D.Net Test Bed";
  13.             Application.EnableVisualStyles();
  14.             MainWindow win = new MainWindow();
  15.             Console.Write("Loading the OpenGL display window.  Please be patient... ");
  16.             //Show above the console
  17.             win.Show();
  18.             win.BringToFront(); //Doesn't bring above the console?
  19.             win.TopMost = true; //Hacky fix instead:
  20.             win.TopMost = false;
  21.             Console.WriteLine("DONE");
  22.             
  23.             Application.Run(win);            
  24.         }
  25.     }
  26. }