我在Windows窗體應用程序中有一個瀏覽按鈕,我只想過濾選擇PDF文件的選項。因此,在瀏覽文件窗口中,只有pdf文件可見,不會顯示.doc或任何類型的文檔格式。只允許上傳pdf文件
private void btnSelectFile_Click(object sender, EventArgs e)
{
var dlg = new OpenFileDialog();
var res = dlg.ShowDialog();
if (res == DialogResult.OK)
{
DocumentUNCPath.Text = dlg.FileName;
}
}
這是一個重複的問題。與解釋一起在這裏看到答案。 http://stackoverflow.com/questions/2069048/setting-the-filter-to-an-openfiledialog-to-allow-the-typical-image-formats – 2013-02-13 14:25:48