(1)在Visual Studio 中新建一個“Windows窗體應用程式”專案
(2)在Form1上佈置一個TextBox 並將Multiline屬性設定為true;ScrollBars屬性設定為both
(3)窗體程式碼Form1.cs
using System;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
public Form1()
InitializeComponent();
ReadTextFile(@"d:\sample.txt");
}
/// <summary>
/// 讀入文字檔案並在TextBox中顯示
/// </summary>
/// <param name="filePath">文字檔名</param>
private void ReadTextFile(string filePath)
// 讀入文字檔案的所有行
string[] lines = File.ReadAllLines(filePath);
// 在textBox1中顯示檔案內容
foreach (string line in lines)
textBox1.AppendText(line + Environment.NewLine);
(1)在Visual Studio 中新建一個“Windows窗體應用程式”專案
(2)在Form1上佈置一個TextBox 並將Multiline屬性設定為true;ScrollBars屬性設定為both
(3)窗體程式碼Form1.cs
using System;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
ReadTextFile(@"d:\sample.txt");
}
/// <summary>
/// 讀入文字檔案並在TextBox中顯示
/// </summary>
/// <param name="filePath">文字檔名</param>
private void ReadTextFile(string filePath)
{
// 讀入文字檔案的所有行
string[] lines = File.ReadAllLines(filePath);
// 在textBox1中顯示檔案內容
foreach (string line in lines)
{
textBox1.AppendText(line + Environment.NewLine);
}
}
}
}