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

📄 stone.cs

📁 VC#.NET编写的吃豆子游戏
💻 CS
字号:
using System;
using System.Drawing;
using System.Drawing.Imaging;

namespace WindowsApplication22
{
	/// <summary>
	/// Summary description for Stone.
	/// </summary>
	public class Stone
	{
		public Point Position;
		static Bitmap StoneImage = null;

		public Stone()
		{
			//
			// TODO: Add constructor logic here
			//
			Position.X = 0;
			Position.Y = 0;
			if (StoneImage  == null)
			{
				StoneImage = new Bitmap("stone.gif");
			}
		}

		public Stone(int x, int y)
		{
			//
			// TODO: Add constructor logic here
			//
			Position.X = x;
			Position.Y = y;
			if (StoneImage  == null)
			{
				StoneImage = new Bitmap("stone.gif");
			}
		}

		public Rectangle GetFrame()
		{
			Rectangle myRect = new Rectangle(Position.X, Position.Y, StoneImage.Width, StoneImage.Height);
			return myRect;
		}

		public void Draw(Graphics g)
		{
			Rectangle destR = new Rectangle(Position.X, Position.Y, StoneImage.Width, StoneImage.Height);
			Rectangle srcR = new Rectangle(0,0, StoneImage.Width, StoneImage.Height);
			g.DrawImage(StoneImage, destR, srcR, GraphicsUnit.Pixel);
		}
	}
}

⌨️ 快捷键说明

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