欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

c#抽签系统的实现示例

时间:2022-03-19 10:47:39|栏目:.NET代码|点击:

一个基于c#的简单抽签系统,可以重新导入数据,清空数据。
代码简单,比较适合初学者。

在这里插入图片描述

导入数据时会创建一个txt文本,可以在里面看到输入

导入数据时会创建一个txt文本,可以在里面看到输入

private void button1_Click(object sender, EventArgs e)   //确定按钮
        {
            string path = System.IO.Directory.GetCurrentDirectory() + "//name.txt";     
             Random rand = new Random(System.Guid.NewGuid().GetHashCode());               
             string[] name = File.ReadAllLines(path);                          
            if (name.Length == 0)
            {
                MessageBox.Show("导入数据不能为空!");
            }
            else
            {
                textBox1.Text = name[rand.Next(0, name.Length)];              //抽签          
                textBox1.ForeColor = Color.Black;
            }
        }
         private void button3_Click(object sender, EventArgs e)     //导入数据
        {
            string qkong = "";                                                               //清空name.TXT
            string CurDir11 = System.AppDomain.CurrentDomain.BaseDirectory + @"name.txt.txt";    
            String filePath11 = CurDir11;
            System.IO.StreamWriter file11 = new System.IO.StreamWriter(filePath11, false);     /
            file11.Write(qkong);                                                                 
            file11.Close();                                                                   
            file11.Dispose();                                                                
            string result = textBox2.Text.Trim();                                          
            string d = System.AppDomain.CurrentDomain.BaseDirectory + @"name.txt";    
            String filePath = d;
            System.IO.StreamWriter file1 = new System.IO.StreamWriter(filePath, false);     
            file1.Write(result);                                                              
            file1.Close();                                                                 
            file1.Dispose();                                                                
            MessageBox.Show("导入成功");
        }
        private void button4_Click(object sender, EventArgs e)      //清空数据
        {
            string qkong = "";                                                              
            string s = System.AppDomain.CurrentDomain.BaseDirectory + @"name.txt.txt";   
            String filePath11 = s;
            System.IO.StreamWriter file11 = new System.IO.StreamWriter(filePath11, false);     
            file11.Write(qkong);                                                              
            file11.Close();                                                                  
            file11.Dispose();                                                                
            textBox2.Text = "";
        }
        private void textBox2_TextChanged(object sender, EventArgs e)
        {
            this.textBox2.Multiline = true;
        }

上一篇:c#基础系列之ref和out的深入理解

栏    目:.NET代码

下一篇:10个C#程序员经常用到的实用代码片段

本文标题:c#抽签系统的实现示例

本文地址:http://www.codeinn.net/misctech/196590.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有