Thứ Hai, 24 tháng 10, 2011

Game Caro bằng C# [Source code]

Code game Caro C# 2005 , các bạn có thể tải về tham khảo nhé


using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Game_Caro
{
public partial class Form1 : Form
{
Graphics g;
// Khoi tao mang gom 30 hang va 30 cot
int r = 30;
int c = 30;
int dd = 20;
int[,] arr;
int d = 10;
int flag;


public Form1()
{
InitializeComponent();
arr = new int[r, c];
SetArr(arr, r, c);
}

//dung Paint de ve ma tran dua vao thong so khai bao phia tren .
private void Form1_Paint(object sender, PaintEventArgs e)
{
//g = new Graphics();
g = this.CreateGraphics();

for (int i = 0; i <= r; i++)
g.DrawLine(new Pen(Color.Blue, 1), 0, i * dd, r * dd, i * dd);
for (int j = 0; j <= c; j+


Các bạn tải về bản đầy đủ tại đây


http://dl.dropbox.com/u/43555804/vanluong1/data/VanLuong.Blogspot.Com_Game%20Caro.rar


EmoticonEmoticon