⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cs

📁 《.NET游戏编程入门经典-c#篇》
💻 CS
字号:
using System;
using System.Drawing;
using Microsoft.DirectX;
using Container = System.ComponentModel.Container;
/// <summary>
/// The main windows form for the application.
/// </summary>
public class MainClass{

	private GraphicsClass graphics = null;

	/// <summary>
	// Main entry point of the application.
	/// </summary>
	public static void Main() {
		MainClass m = new MainClass();
	}

	public MainClass() {
		try {
			graphics = new GraphicsClass();
		}
		catch(DirectXException) {
			return;
		}
		if( graphics.CreateGraphicsSample() )
			graphics.Run();
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -