• 大小: 0.95M
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 中国象棋  象棋  

资源简介


资源截图

代码片段和文件信息

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

namespace 象棋
{
    enum player
    {
        blank
        red
        blue   
    };
    enum chesstype
    {
        blank
        jiang
        che
        ma
        pao
        xiang
        zu
        shi      
    };
    struct chess
    {
        public player side;
        public chesstype type;
    };
    //下载于www.51aspx.com
    struct block
    {
        public PictureBox container;
        public chess item;
    };
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            pictur

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2797  2014-09-22 09:48  51Aspx源码必读.txt
     文件      108200  2014-09-17 13:59  Form1.Designer.cs
     文件       21871  2014-09-22 09:43  Form1.cs
     文件      130407  2014-09-17 13:59  Form1.resx
     文件         487  2014-09-16 19:18  Program.cs
     目录           0  2014-09-22 09:34  Properties\
     文件        1369  2014-09-22 09:43  Properties\AssemblyInfo.cs
     文件        8032  2014-09-16 19:14  Properties\Resources.Designer.cs
     文件        9561  2014-09-16 19:14  Properties\Resources.resx
     文件        1093  2014-08-24 18:04  Properties\Settings.Designer.cs
     文件         249  2014-08-24 18:04  Properties\Settings.settings
     目录           0  2014-09-22 09:34  Resources\
     文件      110504  2014-08-24 18:04  Resources\2406520_142349059_2.jpg
     文件        8552  2014-09-16 19:00  Resources\item_2345看图王(10).png
     文件        8940  2014-09-16 19:00  Resources\item_2345看图王(11).png
     文件        8592  2014-09-16 19:00  Resources\item_2345看图王(12).png
     文件        8792  2014-09-16 19:00  Resources\item_2345看图王(13).png
     文件        8507  2014-09-16 19:00  Resources\item_2345看图王(14).png
     文件        8952  2014-09-16 19:00  Resources\item_2345看图王(15).png
     文件        9083  2014-09-16 19:00  Resources\item_2345看图王(2).png
     文件        8678  2014-09-16 19:00  Resources\item_2345看图王(3).png
     文件        8574  2014-09-16 19:00  Resources\item_2345看图王(4).png
     文件        8885  2014-09-16 19:00  Resources\item_2345看图王(5).png
     文件        8853  2014-09-16 19:00  Resources\item_2345看图王(6).png
     文件        8800  2014-09-16 19:00  Resources\item_2345看图王(7).png
     文件        8861  2014-09-16 19:00  Resources\item_2345看图王(8).png
     文件        8846  2014-09-16 19:00  Resources\item_2345看图王(9).png
     目录           0  2014-09-22 09:34  bin\
     目录           0  2014-09-22 09:34  bin\Debug\
     文件      268288  2014-09-17 14:01  bin\Debug\中国象棋.exe
     文件       50688  2014-09-17 14:01  bin\Debug\中国象棋.pdb
............此处省略25个文件信息

评论

共有 条评论