OpenFileDialog クラス

ユーザーがファイルを開くために使用できるコントロールを表示するコモン ダイアログ ボックスを表します。このクラスは継承できません。

この型のすべてのメンバの一覧については、OpenFileDialog メンバ を参照してください。

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         System.Windows.Forms.CommonDialog
            System.Windows.Forms.FileDialog
               System.Windows.Forms.OpenFileDialog

NotInheritable Public Class OpenFileDialog
   Inherits FileDialog
[C#]
public sealed class OpenFileDialog : FileDialog
[C++]
public __gc __sealed class OpenFileDialog : public FileDialog
[JScript]
public class OpenFileDialog extends FileDialog

スレッドセーフ

この型の public static (Visual Basicでは Shared) のすべてのメンバは、マルチスレッド操作で安全に使用できます。インスタンスのメンバの場合は、スレッドセーフであるとは限りません。

解説

このクラスを使用すると、ファイルが存在するかどうかを確認してから、そのファイルを開くことができます。 ShowReadOnly プロパティは、ダイアログ ボックスに読み取り専用チェック ボックスを表示するかどうかを決定します。 ReadOnlyChecked プロパティは、読み取り専用チェック ボックスがオンかオフかを示します。

このクラスのほとんどの機能は FileDialog クラスにあります。

使用例

[Visual Basic, C#, C++] OpenFileDialog を作成し、いくつかのプロパティを設定し、 CommonDialog.ShowDialog メソッドを使用してダイアログ ボックスを表示する例を次に示します。この例は、フォームに Button が配置され、 System.IO 名前空間が追加されていることを前提にしています。

 
Protected Sub button1_Click(sender As Object, e As System.EventArgs)
    Dim myStream As Stream
    Dim openFileDialog1 As New OpenFileDialog()
       
    openFileDialog1.InitialDirectory = "c:\"
    openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"
    openFileDialog1.FilterIndex = 2
    openFileDialog1.RestoreDirectory = True
       
    If openFileDialog1.ShowDialog() = DialogResult.OK Then
        myStream = openFileDialog1.OpenFile()
        If Not (myStream Is Nothing) Then
            ' Insert code to read the stream here.
            myStream.Close()
        End If
    End If
End Sub


[C#] 
protected void button1_Click(object sender, System.EventArgs e)
{
    Stream myStream;
    OpenFileDialog openFileDialog1 = new OpenFileDialog();

    openFileDialog1.InitialDirectory = "c:\\" ;
    openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
    openFileDialog1.FilterIndex = 2 ;
    openFileDialog1.RestoreDirectory = true ;

    if(openFileDialog1.ShowDialog() == DialogResult.OK)
    {
        if((myStream = openFileDialog1.OpenFile())!= null)
        {
            // Insert code to read the stream here.
            myStream.Close();
        }
    }
}


[C++] 
protected:
 void button1_Click(Object* /*sender*/, System::EventArgs* /*e*/)
 {
     Stream* myStream;
     OpenFileDialog* openFileDialog1 = new OpenFileDialog();
 
     openFileDialog1->InitialDirectory = S"c:\\" ;
     openFileDialog1->Filter = S"txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
     openFileDialog1->FilterIndex = 2 ;
     openFileDialog1->RestoreDirectory = true ;
 
     if(openFileDialog1->ShowDialog() == DialogResult::OK)
     {
         if((myStream = openFileDialog1->OpenFile())!= 0)
         {
             // Insert code to read the stream here.
             myStream->Close();
         }
     }
 }
 

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Windows.Forms

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

アセンブリ: System.Windows.Forms (System.Windows.Forms.dll 内)

参照

OpenFileDialog メンバ | System.Windows.Forms 名前空間 | FileDialog | CommonDialog