如何在C#中单击按钮时显示txt文件
我是 c# 新手,我需要编写一个带有按钮的程序(单击它以显示 .txt 文件) 有人可以给我一些想法或者可能是示例代码
谢谢
I'm new for c#, and i need to write a programme with a button (clicking it to show a .txt file)
could someone give me some idea or may be an example code
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WinForms 的答案:
在表单上放置名为
tbBrowser
的textBox
和名为bBrowse
的Button
。双击按钮创建按钮Click
处理程序。将以下代码放入处理程序中:请参阅 StreamReader 文档供参考。
ASP.NET 的答案会完全不同,但你不太可能问这个(至少有问题的单词
program
让我这么认为)Answer for WinForms:
Place
textBox
namedtbBrowser
andButton
namedbBrowse
on form. Double-click button to create buttonClick
handler. Place the following code in the handler:See StreamReader documentation for reference.
Answer for ASP.NET would be completely different, but it's unlikely you are asking about that (at least word
program
in question makes me think so)你还没有说你是否想使用winforms,wpf或其他东西。不管怎样,下面的代码适用于 winforms - 只需在表单中添加一个文本框:
You haven't said if you wanted to use winforms, wpf or something else. Anyway, the code below will work for winforms - just add a textbox to your form:
如果您正在创建 Windows 窗体应用程序,请在窗体中添加一个按钮,
双击该按钮
,然后在方法中编写以下代码
private void Button1_Click(object sender, EventArgs e)
{
string filePath = "给出你的路径";
// 或者您可以在 app.config 中给出您的路径,并根据需要从 app.config 中读取
// 改变路径。
If you are creating windows form appln add a button to you form
double click the button
and in the method write the following code
private void button1_Click(object sender, EventArgs e)
{
string filePath = "give your path";
// or you can give your path in app.config and read from app.config if you want
// to change the path .