我目前正在使用輸出文件。我正在構建一個程序,要求用戶在程序執行其他任何操作之前保存輸出文件。目的是程序將結果寫入該輸出文件。我可以通過點擊按鈕來獲得輸出文件對話框。程序初始化後,是否立即提示輸出文件對話框?通過按鈕提示用戶在程序啓動時輸出文件對話框(初始化)
代碼輸出文件:
namespace open_document
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog openFile = new OpenFileDialog();
openFile.Filter = "Text Files | *.txt";
openFile.ShowDialog();
StreamReader infile = File.OpenText(openFile.FileName);
}
}
}
你需要關閉你的'StreamReader'。 – Adam
它是WinForms?如果是,請添加標籤並嘗試表格載入事件 – prashanth
您是否在問什麼事件可用於連接?你可能想要你的'窗體'的加載事件:http://msdn.microsoft.com/en-us/library/system.windows.forms.form.load.aspx – Sepster