winform 選擇檔案窗體模組
這是當textBox7文字框中無內容時,才可以執行的,且還關聯了一個button3,如不需要,都可以刪除
if (string.IsNullOrEmpty(textBox7.Text))
{
//此時彈出一個可以選擇檔案的窗體
OpenFileDialog fileDialog = new OpenFileDialog();
//一次只能選取一個檔案
fileDialog.Multiselect = false;
fileDialog.Title = "請選擇檔案";
fileDialog.Filter = "所有檔案(*.*)|*.*";
if (fileDialog.ShowDialog() == DialogResult.OK)
{
textBox7.Text = fileDialog.FileName;
textBox7.Enabled = false;
button3.Text = "重新輸入";
}
}
else
{
textBox7.Enabled = false;
button3.Text = "重新輸入";
////此時彈出一個可以選擇檔案的窗體
//OpenFileDialog fileDialog = new OpenFileDialog();
////一次只能選取一個檔案
//fileDialog.Multiselect = false;
//fileDialog.Title = "請選擇檔案";
//fileDialog.Filter = "所有檔案(*.*)|*.*";
//if (fileDialog.ShowDialog() == DialogResult.OK)
//{
// textBox7.Text = fileDialog.FileName;
// textBox7.Enabled = false;
// button3.Text = "重新輸入";
//}
}
}
else if (button3.Text == "重新輸入")
{
textBox7.Enabled = true;
button3.Text = "確認輸入";
}