标题:求助,如何在打开文件的同时取得该打开文件的文件名显示于窗体标题栏(TX ...
取消只看楼主
shwokao
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-6-16
 问题点数:0 回复次数:0 
求助,如何在打开文件的同时取得该打开文件的文件名显示于窗体标题栏(TXT文件)

private void button2_Click(object sender, System.EventArgs e)
{



OpenFileDialog openfile=new OpenFileDialog();
openfile .Filter= "所有文件|*.*";
if(openFileDialog1.ShowDialog()==DialogResult.OK)
{

this .textBox1.Text="";
string fname=openFileDialog1.FileName;

StreamReader sr=File.OpenText(fname);

string str;
while((str=sr.ReadLine())!=null)
{
this.textBox1.Text+=str;
}
}
}

我已经能打开文件了,但是不知道怎么文件名取出,显示FORM的标题上.

请高手指教!!!!!!!!

搜索更多相关主题的帖子: TXT 窗体 文件名 fna 
2007-06-16 23:57



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-148131-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.256422 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved