首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

急记事本程序打开文件时怎样获取文件的文件名并显示在 Form1的Text上,该怎么处理

2012-03-26 
急!!记事本程序打开文件时怎样获取文件的文件名并显示在 Form1的Text上我在做一个仿WINDOWS记事本程序,打

急!!记事本程序打开文件时怎样获取文件的文件名并显示在 Form1的Text上
我在做一个仿WINDOWS记事本程序,打开文件时文件的文件名自动显示在 Form1的Text上 不知道怎么弄 各位高手请帮下忙 小弟 在线等。。。。。。谢谢

[解决办法]

C# code
 private void 打开Button_Click(object sender, EventArgs e)        {             openFileDialog1.DefaultExt = "*.rtf";            openFileDialog1.Filter = "RTF Files|*.rtf|(*.txt)|*.txt";            openFileDialog1.FilterIndex = 2;            openFileDialog1.RestoreDirectory = true;            if (openFileDialog1.ShowDialog() == DialogResult.OK && openFileDialog1.FileName.Length > 0)            {                string filname = openFileDialog1.FileName;                textBox1.Text=filname;                                           }        } 

热点排行