• 大小: 1.75M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: 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 _11004002_猜数字游戏
{
    public partial class Form1 : Form
    {
        //初始值
        Random r = new Random();
        int number = 0;
        int count = 0;
        bool inRight = false;
        
        public Form1()
        {
            InitializeComponent();
        }
        //只能从键盘上敲入数字
        private void textBox1_KeyPress(object sender KeyPressEventArgs e)
        {
            if (e.KeyChar < ‘0‘ || e.KeyChar > ‘9‘)
            {
                e.Handled = true;
            }
            if (e.KeyChar == ‘\b‘)
            {
               e.Handled = fals

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    1340165  2013-05-30 10:30  软件设计—11004002\11004002—设计报告.docx

     文件        920  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏.sln

    ..A..H.     19968  2014-06-10 15:55  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏.suo

     文件       3710  2013-05-29 19:44  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\11004002—猜数字游戏.csproj

     文件       3964  2013-05-30 10:32  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Form1.cs

     文件      12030  2013-05-29 22:54  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Form1.Designer.cs

     文件     181696  2013-05-29 22:54  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Form1.resx

     文件        506  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Program.cs

     文件     131072  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\bin\Debug\11004002—猜数字游戏.exe

     文件      38400  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\bin\Debug\11004002—猜数字游戏.pdb

     文件      11600  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\bin\Debug\11004002—猜数字游戏.vshost.exe

     文件        490  2010-03-17 22:39  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\bin\Debug\11004002—猜数字游戏.vshost.exe.manifest

     文件       3696  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\11004002—猜数字游戏.csproj.FileListAbsolute.txt

     文件     131072  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\11004002—猜数字游戏.exe

     文件      38400  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\11004002—猜数字游戏.pdb

     文件       4501  2013-05-29 21:44  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\DesignTimeResolveAssemblyReferences.cache

     文件       6465  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\DesignTimeResolveAssemblyReferencesInput.cache

     文件       1842  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\GenerateResource.read.1.tlog

     文件       2074  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\GenerateResource.write.1.tlog

     文件       8031  2013-05-29 22:04  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\ResolveAssemblyReference.cache

     文件     117141  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\_11004002_猜数字游戏.Form1.resources

     文件        180  2014-06-10 15:50  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\_11004002_猜数字游戏.Properties.Resources.resources

     文件       1384  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Properties\AssemblyInfo.cs

     文件       2900  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Properties\Resources.Designer.cs

     文件       5612  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Properties\Resources.resx

     文件       1110  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Properties\Settings.Designer.cs

     文件        249  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\Properties\Settings.settings

     目录          0  2013-05-29 19:30  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug\TempPE

     目录          0  2013-09-07 10:07  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\obj\x86\Debug

     目录          0  2013-09-07 10:07  软件设计—11004002\11004002—猜数字游戏\11004002—猜数字游戏\bin\Debug

............此处省略11个文件信息

评论

共有 条评论