winform 随机选人页面的实现

本文介绍如何使用C# Winform创建一个随机选人的页面,选中人员后能动态调整其权重,涉及核心功能的实现及界面设计。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

我想实现一个随机选人的页面,每次选中之后则修改选人的权重,如下
在这里插入图片描述
Rollcall.cs

using Business;
using Common.RestSharp;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace QJKT
{
   
    public partial class Rollcall : Form
    {
   
        List<Student> handstulist = new List<Student>();//举手学生列表
        List<Student> stuitems = new List<Student>();//学生加权重随即乱序列表
        List<string> selStulist = new List<string>();//学生查询列表
        public DataTable dt_exp = null;
        Boolean flag = false;
        public Rollcall()
        {
   
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            InitializeComponent();
            //加载学生名单
            dt_exp = GetStudentTable();
            this.dataGridView1.DataSource = dt_exp;
            this.label1.Text = "请点击选人方式";
            //表格界面优化
            this.dataGridView1.ColumnHeadersDefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
            this.dataGridView1.DefaultCellStyle.Font = new Font("宋体", 13);
            this.dataGridView1.EnableHeadersVisualStyles = false;
            this.dataGridView1.ColumnHeadersDefaultCellStyle.Font = new Font("宋体", 12, FontStyle.Bold);
            this.dataGridView1.ColumnHeadersDefaultCellStyle.ForeColor = Color.Purple;
        }
        private static Rollcall rollcall = null;//加载一个静态的私有的成员变量

        public static Rollcall RollcallInstance()//返回这个实例化后的静态变量
        {
   
            if (rollcall == null || rollcall.IsDisposed)
            {
   
                rollcall = new Rollcall();
            }
            return rollcall;
        }
        private void button1_Click(object sender, EventArgs e)
        {
   
            dt_exp = GetStudentTable();
            this.dataGridView1.DataSource = dt_exp;
            this.label1.Text = "请点击【开始】";
            /*OpenFileDialog ofd = new OpenFileDialog();
            ofd.InitialDirectory = Application.StartupPath;
            ofd.Title = "请选择要导入的文件";
            ofd.Filter = "csv文件|*.csv";
            if (ofd.ShowDialog() == DialogResult.OK)
            {
                //获取用户选择的文件完整路径
                string filePath = ofd.FileName;
                //获取对话框中所选文件的文件名和扩展名,文件名不包括路径
                string fileName = ofd.SafeFileName;
                dt_exp = ReadTest(filePath);
                this.dataGridView1.DataSource = dt_exp;
                this.label1.Text = "请点击【开始】";
            }*/
        }

        //读取csv文件
        private DataTable ReadTest(string filepath)
        {
   
            DataTable dt = new DataTable();

            //文件流读取
            System.IO.FileStream fs = new System.IO.FileStream(filepath, System.IO.FileMode.Open);
            System.IO.StreamReader sr = new System.IO.StreamReader(fs, Encoding.GetEncoding("gb2312"));

            string tempText = "";
            bool isFirst = true;
            while ((tempText = sr.ReadLine()) != null)
            {
   
                string[] arr = tempText.Split(new char[] {
    ',' }, StringSplitOptions.RemoveEmptyEntries);

                //一般第一行为标题,所以取出来作为标头
                if (isFirst)
                {
   
                    foreach (string str in arr)
                    {
   
                        dt.Columns.Add(str);
                    }
                    isFirst = false;
                }
                else
                {
   
                    //从第二行开始添加到datatable数据行
                    DataRow dr = dt.NewRow();
                    for (int i = 0; i < dt.Columns.Count; i++)
                    {
   
                        dr[i] = i < arr.Length ? arr[i] : "";
                    }
                    dt.Rows.Add(dr);
                }
            }
            //展示到页面
            //关闭流
            sr.Close(); fs.Close();

            return dt;
        }
        /// <summary>
        /// 获取课堂名单,权值
        /// </summary>
        /// <returns></returns>
        private DataTable GetStudentTable()
        {
   
            //学生
            List<string> students = new List<string>( );
            DataTable dt = new DataTable();
            if (Classes.slist.Count > 0)
            {
   
                dt.Columns.Add("序号");
                dt.Columns.Add("学号");
                dt.Columns.Add("姓名"
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值