非常简单的问题 - 启动时自动加载文本框 C#

发布于 2024-10-17 23:16:57 字数 149 浏览 3 评论 0原文

标题说明了一切:) 我正在用 C# 形式创建一个程序。用户可以编写文本并保存。我现在想要的是自动加载这个文本文件,它只能位于一个位置 - 在 Directory.GetCurrentDIRECTORY() + "text.txt" 处。 那么这应该怎么做呢?

The tittle says it all :) I am creating a program in C# forms. The user can write a text, and save it. What i now want, is to autoload this textfile, witch only can be at one location - At the Directory.GetCurrentDIrectory() + "text.txt".
So how should this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森罗 2024-10-24 23:16:57

我假设您希望在表单可用时执行此操作,在这种情况下,我建议使用 表单加载事件。只需打开文件,读取其内容,然后将 Text 属性设置为表单加载中的内容即可。

I am assuming that you want to do this when the form is available, in which case I would recommend using the Form Load event. Just open the file, read its contents, and set the Text property to the contents in the form load.

淡水深流 2024-10-24 23:16:57

这实际上非常简单:

//Autoload
var filePath = Path.Combine(Directory.GetCurrentDirectory(), "text.txt");
if(File.Exists(filePath))
    yourTextBox.Text = File.ReadAllText(filePath);

正如 Ryan 指出的那样,您可以在 FormLoad 事件中执行此操作。

It's quite simple really:

//Autoload
var filePath = Path.Combine(Directory.GetCurrentDirectory(), "text.txt");
if(File.Exists(filePath))
    yourTextBox.Text = File.ReadAllText(filePath);

As Ryan points out, you could do it in the FormLoad event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文