• 大小: 105KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: C#
  • 标签: C#  点名  

资源简介

基于C#的点名小软件,可修改数据资源实现班级点名或者其他点名。

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace 点名
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        // Directory.
        //string[] y = Directory.GetFiles(@“\image“);

        List path;
        private void button1_Click(object sender EventArgs e)
        {
            if (button1.Text == “随机抽取“)
            {
                timer1.Enabled = true;
                button1.Text = “暂停“;
            }
            else
            {
                timer1.Enabled = false;
                button1.Text = “随机抽取“;
            }
            //path = new List();
            //string[] lian= Directory.GetFiles(@“\image“);
            //for (int i = 0; i < lian.Length; i++)
            //{
            //    path.Add(lian[i]);
            //}
        }

        private void timer1_Tick(object sender EventArgs e)
        {
            path = new List();
            string[] lian = Directory.GetFiles(“./image“);
            for (int i = 0; i < lian.Length; i++)
            {
                path.Add(lian[i]);
            }
            Random de = new Random();
            int t=de.Next(0 4);
            pictureBox1.Image = Image.FromFile(path[t]);
            pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage;
            string w= Path.GetFileName(path[t]);
            char[] p = new char[] { ‘.‘ };
           string[] r= w.Split(p);
            label1.Text = r[0];
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-07-29 01:06  点名\
     目录           0  2018-07-29 01:06  点名\.vs\
     目录           0  2018-07-29 01:06  点名\.vs\点名\
     目录           0  2018-07-29 01:06  点名\.vs\点名\v14\
     文件       29184  2018-07-29 01:04  点名\.vs\点名\v14\.suo
     目录           0  2018-07-29 01:06  点名\点名\
     文件         985  2018-04-27 23:15  点名\点名.sln
     文件         189  2018-04-27 23:15  点名\点名\App.config
     目录           0  2018-07-29 01:06  点名\点名\bin\
     目录           0  2018-07-29 01:06  点名\点名\bin\Debug\
     目录           0  2018-07-29 01:06  点名\点名\bin\Debug\image\
     文件       35564  2018-07-16 19:43  点名\点名\bin\Debug\image\1.jpg
     文件        9842  2018-07-21 15:14  点名\点名\bin\Debug\image\3.jpg
     文件         106  2018-07-16 19:43  点名\点名\bin\Debug\image\biao.gif
     文件        1854  2018-07-16 19:43  点名\点名\bin\Debug\image\bk1.jpg
     文件         343  2018-07-16 19:43  点名\点名\bin\Debug\image\index7.gif
     文件        6246  2018-07-16 19:43  点名\点名\bin\Debug\image\logo.gif
     文件        9216  2018-07-29 01:04  点名\点名\bin\Debug\点名.exe
     文件         189  2018-04-27 23:15  点名\点名\bin\Debug\点名.exe.config
     文件       19968  2018-07-29 01:04  点名\点名\bin\Debug\点名.pdb
     文件       22696  2018-07-29 01:04  点名\点名\bin\Debug\点名.vshost.exe
     文件         189  2018-04-27 23:15  点名\点名\bin\Debug\点名.vshost.exe.config
     文件         490  2013-06-18 20:28  点名\点名\bin\Debug\点名.vshost.exe.manifest
     文件        1789  2018-07-29 01:04  点名\点名\Form1.cs
     文件        3671  2018-04-27 23:47  点名\点名\Form1.Designer.cs
     文件        6011  2018-04-27 23:47  点名\点名\Form1.resx
     目录           0  2018-07-29 01:06  点名\点名\obj\
     目录           0  2018-07-29 01:06  点名\点名\obj\Debug\
     文件        1464  2018-07-29 01:02  点名\点名\obj\Debug\DesignTimeResolveAssemblyReferences.cache
     文件        7168  2018-07-29 00:59  点名\点名\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
     文件           0  2018-04-27 23:15  点名\点名\obj\Debug\TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
............此处省略18个文件信息

评论

共有 条评论