OpenFileDialog控制項

2021-09-16 12:14:48 字數 919 閱讀 2621

openfiledialog常用屬性及說明

屬性說明

addextension

指示如果使用者省略副檔名,對話方塊是否自動在檔名中新增副檔名

defaulexit

獲取或設定檔案預設副檔名

filename

filenames

獲取檔案對話方塊中所有選定檔案的檔名

filter

獲取和設定當前檔名篩選字串,該字串決定對話方塊的「檔案型別框」出現的選擇內容

initialdirectory

獲取或設定檔案對話方塊顯示的初始目錄

multiselect

獲取或設定乙個值,該值指示對話方塊是否允許選擇多個檔案

openfiledialog常用方法及說明

方法說明

openfile

以唯讀模式開啟檔案

showdialog

顯示openfilediaglog對話方塊

簡單應用:

開啟乙個文字檔案

private void button1_click(object sender, eventargs e)

}

常見的錯誤寫法:

1.只寫openfiledialog.showdialog(),不寫if判斷是否選擇了檔案; 如果我們開啟檔案對話方塊中什麼檔案也沒選,會報錯:

引發的異常:「system.io.filenotfoundexception」(位於 mscorlib.dll 中)

「system.io.filenotfoundexception」型別的未經處理的異常在 mscorlib.dll 中發生未能找到檔案「e:\code\debug\12\02\demo\demo\bin\debug\openfiledialog1」。

關於OpenFileDialog的問題

我最近在寫個圖書管理系統,出了openfiledialog的問題,在網上找了很久,在csdn裡也盡是用委派的方法,但事實上,我採用它,一點效果都沒有.想了許久,最後還是去問了老師,在老師的幫助下搞定了 thread managebookthread new thread new threadstar...

OpenFileDialog的基本操作

一.獲取檔名和檔案路徑問題 system.io.path.getfullpath openfiledialog.filename 絕對路徑 system.io.path.getextension openfiledialog.filename 副檔名 system.io.path.getfilena...

關於OpenFileDialog的使用

為了方便同事在日常工作中很快速生成大量資料,我做了檔案拷貝的小工具 其中用到了openfiledialog這個類,下面是關於這個類的一些用法 openfiledialog類是用來選擇檔案位置的,folderbrowserdialog 類用來選擇資料夾位置.具體 如下 程式截圖 程式原始碼 using...