如何使用OpenFileDialog及時打開應用程序的文件夾?OpenFileDialog打開文件夾與exe
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
...........
}
什麼是「打開文件夾」是什麼意思?和「及時」? –
我打電話給OpenFileDialog,它顯示了我的exe文件夾,而不是c:\\ – user1872295
你的問題仍然不清楚。你的意思是「OpenFileDialog在我的應用程序的文件夾中啓動」?請修改您的問題並在其中添加信息,而不是將其添加到評論中,以便人們可以看到它。 –