Click here to Skip to main content
15,881,709 members
Articles / Programming Languages / C#
Article

Minesweeper

Rate me:
Please Sign up or sign in to vote.
2.39/5 (13 votes)
25 Feb 2006 52.3K   3.8K   8   4
It is a game like Window minesweeper of microsoft

Sample Image - Net_framework.gif

Introduction

It is a game program like Window Minesweeper.Perhaps someone write their program like this. But I want to write agian.This is the first program of mine in C# and VS.Net, so it isn't really completely .I hope I'll get many opinions from people who read it

Using the Code

I use 4 main components to make this program 1:GraphicsItem 2:MinemouseEventhandler 3:mathbase 4:MineResorceSet

GraphicsItem
C#
//
//It is some method
//
//
//constructor 
//
        public GraphicsItem(Image beginImage,int _Columns,int _Rows,int _GrItemWidth,int _GrItemHeight)
        {
//img is a Image of mine map
ResetAttribute(_Columns,_Rows,_GrItemWidth,_GrItemHeight);
            Img=new Bitmap(width,height);
            g=Graphics.FromImage(Img);
            ResetBeginImage(beginImage);
        }
//
//DrawItem in position x,y
//
        public void DrawItem(Image image,int column,int row)
        {
            g.DrawImage(image,column*grItemWidth,row*grItemHeight,grItemWidth,grItemHeight);
        }
MinemouseEventhandler
C#
//
//This is class to decode MouseEventHandler of Winform to //Event-handler of this game
//
//
//sample method
//
        public void MouseMove(object sender,MouseEventArgs me)
        {
            if((me.X>=(MX+1)*_ItemWeight) || (me.X<mx*_itemweight)||(me.y />=(MY+1)*_ItemHeight)||(me.Y<my*_itemheight)) y="(int)(Math.Floor(me.Y/_ItemHeight));" x="(int)(Math.Floor(me.X/_ItemWeight));" />=0 && x<columns />=0 && y

class mathbase

It contains all method that processes property of mine map some method like makeminemap(),leftclick(x,y),...

class MineResourceSet

It is a class cotain all method read,write the set of game is load last game,and save new property

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
I'm a student ,from Viet Nam and 21 years old,i'm studying in Hanoi university of technology(H.U.T).I want to make friend to all people

Comments and Discussions

 
Questionuse of code Pin
caitygreyling1613-Sep-12 9:13
caitygreyling1613-Sep-12 9:13 
QuestionIn Visual Studio 2010 Pin
bitcrushr16-Nov-11 23:24
bitcrushr16-Nov-11 23:24 
GeneralMy vote of 3 Pin
Toli Cuturicu20-Dec-10 14:46
Toli Cuturicu20-Dec-10 14:46 
Almost decent.
Questionwhat is wrong?? Pin
rashidotm3-Jan-09 5:36
rashidotm3-Jan-09 5:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.