System.Windows.Forms.OpenFileDialog组件将打开用于浏览和选择文件的 Windows 对话框。 若要打开和读取所选文件,可以使用OpenFileDialog.OpenFile方法,或创建System.IO.StreamReader类的实例。 以下示例显示了这两种方法。 在.NET Framework 中,若要获取或设置FileName属性,需要System.Security.Permissions.File...
OpenFileDialog.OpenFile 方法参考 反馈 定义命名空间: System.Windows.Forms 程序集: System.Windows.Forms.dll Source: 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 方法显示对话框。 该示例需要一个窗体,其中放...
System.Windows.Forms Assembly: System.Windows.Forms.dll Source: SaveFileDialog.cs Opens the file with read/write permission selected by the user. C# publicSystem.IO.StreamOpenFile(); Returns Stream The read/write file selected by the user. ...
{//文件路径stringpath =openFileDialog1.FileName;//造文件流FileStream fs =newFileStream(path,FileMode.Open);//造一个二进制数组,用来存储读到的数据byte[] sj =newbyte[fs.Length];//将文件读取为二进制数据,放到二进制数组里面fs.Read(sj,0,sj.Length);//将二进制数据转为字符串richTextBox1.Text ...
public sealed class OpenFileDialog : System.Windows.Forms.FileDialog继承 Object MarshalByRefObject Component CommonDialog FileDialog OpenFileDialog 示例下面的代码示例创建 一个 OpenFileDialog,设置多个属性来定义文件扩展名筛选器和对话框行为,并使用 CommonDialog.ShowDialog 方法显示对话框。 该示例需要一个窗体,其中放...
System.Windows.Forms 程序集: 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....
.Forms.OpenFileDialog openFileDialog1;privateSystem.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;privateSystem.Windows.Forms.Label label5;privateSystem.Windows.Forms.TextBox txtPath3;privateSystem.Windows.Forms.Label label6;privateSystem.Windows.Forms.Button button2;privateSystem.Windo...
System.Windows.Forms Assembly: System.Windows.Forms.dll Source: SaveFileDialog.cs Opens the file with read/write permission selected by the user. C# publicSystem.IO.StreamOpenFile(); Returns Stream The read/write file selected by the user. ...
public sealed class OpenFileDialog : System.Windows.Forms.FileDialog继承 Object MarshalByRefObject Component CommonDialog FileDialog OpenFileDialog 示例下面的代码示例创建 一个 OpenFileDialog,设置多个属性来定义文件扩展名筛选器和对话框行为,并使用 CommonDialog.ShowDialog 方法显示对话框。 该示例需要一个窗体,其中放...