System.Windows.Forms.OpenFileDialog 元件會開啟 Windows 對話方塊來瀏覽和選取檔案。 若要開啟並讀取選取的檔案,您可以使用 OpenFileDialog.OpenFile 方法,或建立 System.IO.StreamReader 類別的執行個體。 下列範例顯示這兩種方法。 在.NET Framework 中,若要取得或設定 FileName 屬性,需要 System.Secur...
System.Windows.Forms.OpenFileDialog组件将打开用于浏览和选择文件的 Windows 对话框。 若要打开和读取所选文件,可以使用OpenFileDialog.OpenFile方法,或创建System.IO.StreamReader类的实例。 以下示例显示了这两种方法。 在.NET Framework 中,若要获取或设置FileName属性,需要System.Security.Permissions.FileIOPermission...
OpenFileDialog.OpenFile 方法参考 反馈 定义命名空间: System.Windows.Forms 程序集: System.Windows.Forms.dll Source: OpenFileDialog.cs 使用只读权限打开用户选择的文件。 该文件由 FileName 属性指定。 C# 复制 public System.IO.Stream OpenFile (); 返回 Stream 一个指定用户选择的只读文件的 Stream。
System.Windows.Forms.dll Source: OpenFileDialog.cs 初始化OpenFileDialog类的实例。 C# publicOpenFileDialog(); 注解 这是类的默认编译器提供的构造函数OpenFileDialog。 适用于 产品版本 .NET Framework1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, ...
System.Windows.Forms.dll 初始化OpenFileDialog类的实例。 C# publicOpenFileDialog(); 注解 这是类的默认编译器提供的构造函数OpenFileDialog。 适用于 产品版本 .NET Framework1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 ...
OpenFile 方法 參考 意見反應 定義 命名空間: System.Windows.Forms 組件: System.Windows.Forms.dll 來源: OpenFileDialog.cs 以唯讀許可權開啟用戶選取的檔案。 檔案是由 FileName 屬性所指定。 C# 複製 public System.IO.Stream OpenFile (); 傳回 Stream Stream,指定用戶選取的唯讀檔案。 例外狀況...
public sealed class OpenFileDialog : System.Windows.Forms.FileDialog继承 Object MarshalByRefObject Component CommonDialog FileDialog OpenFileDialog 示例下面的代码示例创建 一个 OpenFileDialog,设置多个属性来定义文件扩展名筛选器和对话框行为,并使用 CommonDialog.ShowDialog 方法显示对话框。 该示例需要一个窗体,其中放...
下列範例會使用 Windows Forms Button 控制項的 Click 事件處理常式,以 ShowDialog 方法開啟 OpenFileDialog。 使用者選擇檔案並選取 [確定] 之後,StreamReader 類別的執行個體會讀取檔案,並在表單的文字方塊中顯示其內容。 如需從檔案資料流讀取的詳細資訊,請參閱 FileStream.BeginRead 和FileStream.Read。
{//文件路径stringpath =openFileDialog1.FileName;//造文件流FileStream fs =newFileStream(path,FileMode.Open);//造一个二进制数组,用来存储读到的数据byte[] sj =newbyte[fs.Length];//将文件读取为二进制数据,放到二进制数组里面fs.Read(sj,0,sj.Length);//将二进制数据转为字符串richTextBox1.Text ...
Windows.Forms.Label label3;privateSystem.Windows.Forms.TextBox txtPath2;privateSystem.Windows.Forms.Button button1;privateSystem.Windows.Forms.Button btnSubmit;privateSystem.Windows.Forms.Label label4;privateSystem.Windows.Forms.OpenFileDialog openFileDialog1;privateSystem.Windows.Forms.Fo...