初入坑时,看到网上有类似的教程视频实现单词本,于是自己敲了一个实现单词本功能的小项目,在实现期间,发现可以有两种版本来实现单词本功能,此处选择A版来为大家分享经验,同时留作自己日后复习巩固,有疏漏错误的地方,还望大神热心指出,在下感激不尽.
A版实现以下功能:
- 利用文件流读取文本文件
- 利用openfiledialog实现查找文件的功能
- 存取文本文件路径和显示文本文件内容的功能
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.IO;
namespace WindowsFormsApp6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();//每点击一次选择文件按钮自动清空文本框内已经打开的文件内容
textBox2.Clear();//清空文件路径的内容
OpenFileDialog filename = new OpenFileDialog();//定义打开文件
filename.InitialDirectory