初入坑时,看到网上有类似的教程视频实现单词本,于是自己敲了一个实现单词本功能的小项目,在实现期间,发现可以有两种版本来实现单词本功能,此处选择B版来为大家分享经验,同时留作自己日后复习巩固,有疏漏错误的地方,还望大神热心指出,在下感激不尽.
实现以下功能
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;
using System.Threading.Tasks;
using System.IO;
namespace WindowsFormsApp3
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void form1_Load(object sender, EventArgs e)
{
}
int t1 = 0;//此处变量t1只定义一次变量,不随着timer而重复赋值
private void timer1_Tick(object sender, EventArgs e)
{
#region 从文件读取数据
/// <summary>
/// 使用StreamReader读取文本文件然后一行一行的输出 --