非常简单的问题 - 启动时自动加载文本框 C#
标题说明了一切:) 我正在用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您希望在表单可用时执行此操作,在这种情况下,我建议使用 表单加载事件。只需打开文件,读取其内容,然后将
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.这实际上非常简单:
正如 Ryan 指出的那样,您可以在 FormLoad 事件中执行此操作。
It's quite simple really:
As Ryan points out, you could do it in the FormLoad event.