本文介绍了表单加载时自动打开文本文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

我想知道是否可以自动在textBox上打开文本文件
当我加载表单时...我不知道它是否可行,如果它可行,我该怎么办...(C#编程语言)感谢

Hello everybody

I want to Know if it is posible to open a text file, automatically on a textBox
when i load a form... i dont know if it is posible, what do i need to do if it is posible...(C# programming language) thanks

推荐答案

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    using (StreamReader sr = new StreamReader(@"C:\test.txt"))
    {
        textBox1.Text = sr.ReadToEnd();
    }
}


这篇关于表单加载时自动打开文本文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-25 21:06