概述
一个基于c#的简单抽签系统,可以重新导入数据,清空数据。
代码简单,比较适合初学者。
导入数据时会创建一个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#抽签系统的实现示例的文章就介绍到这了,更多相关c# 抽签系统内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!
最后
以上就是高贵酒窝为你收集整理的c#抽签系统的实现示例的全部内容,希望文章能够帮你解决c#抽签系统的实现示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复