OpenFileDialog的使用

本文介绍如何通过C#实现选择并读取TXT文件内容,并将其显示在Windows窗体应用程序的TextBox中。文章提供了完整的代码示例,包括如何设置文件过滤器、读取文件所有行并逐行显示。

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



利用OpenFileDialog指定文本文件(.txt文件),然后打开指定文件并在TextBox中显示。

(1)在Vistual Studio中新建一个“Windows 窗体应用程序”项目

(2)在Form1上,布置一个Label、一个TextBox和一个Button。

设置textBox1的属性:

  • Multiline = true

  • ScrollBars = Both


(3)Form1窗体代码Form1.cs

using System;
using System.Windows.Forms;
using System.IO;
 
namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            // label1用来显示打开文件的路径名
            label1.Text = string.Empty;
            button1.Text = "打开文件...";
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            OpenFileDialog openDlg = new OpenFileDialog();
            // 指定打开文本文件(后缀名为txt)
            openDlg.Filter = "文本文件|*.txt";
            if (openDlg.ShowDialog() == DialogResult.OK)
            {
                // 读出文本文件的所以行
                string[] lines = File.ReadAllLines(openDlg.FileName);
                // 先清空textBox1
                textBox1.Clear();
                // 在textBox1中显示
                foreach (string line in lines)
                {
                    textBox1.AppendText(line + Environment.NewLine);
                }
                // 显示文件路径名
                label1.Text = openDlg.FileName;
            }
        }
    }
}
(4)运行效果






其他回答

拖一个openFileDialog1和一个Timer1控件到Form1中,然后写如下代码:
string txtPath;
if(openFileDialog.ShowDialog()==DialogResult.OK)
{
txtPath=openDialog.FileName;
}

s = File.ReadAllLines(txtPath);
private void timer1_Tick(object sender, EventArgs e)
{
if (nline < s.Length)
{
label1.Text = s[nline].ToString();
}
else
{
nline = 0;
}
nline = nline + 1;
}
追问
请问timer在这里是做什么的呢?nline是什么参数呢?
追答
你不是要按button开始阅读么,如果textBox是单行的话,就用Timer来实现在textBox中隔1秒(或者100ms或者,这个看timer设置)显示一行。

nline就是文本的第几行啊。

如果你的文本很多内容,显然不可能在textBox中全部都显示吧

当然你也设置一个全局变量a,然后在Button的Click事件中使其自增,然后textBox.Text=s[a];,这样每点击一下button,textBox中的内容就换一行
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值