Control.DoubleClick イベントとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > Control.DoubleClick イベントの意味・解説 

Control.DoubleClick イベント

コントロールダブルクリックされたときに発生します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

解説解説

ユーザーオペレーティング システムマウス設定に応じてダブルクリック決定されます。ユーザーは、2 回のクリックではなくダブルクリック見なされるマウス ボタンクリック間隔設定できますClick イベントは、コントロールダブルクリックされるたびに発生します。たとえば、FormClick イベントおよび DoubleClick イベントに対してそれぞれイベント ハンドラがある場合は、フォームダブルクリックされ両方メソッド呼び出されるClick イベントDoubleClick イベント発生しますダブルクリックされたコントロールDoubleClick イベントサポートしてない場合は、Click イベントが 2 回発生することがあります

このイベント発生させるには、ControlStyles の StandardDoubleClick 値および StandardClick 値を true設定する必要があります既存Windows フォーム コントロールか継承している場合、これらの値は既に true設定されていることがあります

メモメモ

ClickDoubleClick、MouseDown、MouseUp、MouseHover、MouseEnter、MouseLeave、MouseMove の各イベントは、TabControl.TabPages コレクション1 つ上の TabPage が存在しない限り、TabControl クラス生成されません。コレクション1 つ上の TabPage があり、ユーザータブ コントロールヘッダー (TabPage の名前が表示される場所) と対話すると、TabControl適切なイベント発生させます。ただし、ユーザーとの対話タブ ページクライアント領域内の場合TabPage該当するイベント発生させます

イベント処理詳細については、「イベント利用」を参照してください

継承時の注意 標準Windows フォーム コントロールか継承しControlStylesStandardClick 値または StandardDoubleClick 値を true変更すると、コントロールClick イベントまたは DoubleClick イベントサポートしてない場合は、予測できない動作が行われたり、何の効果得られなかったりしますWindows フォーム コントロールと、指定したマウス アクションに対して発生するイベント (Click または DoubleClick) の一覧を次に示します

コントロール

マウス クリック

マウス ダブルクリック

マウス クリック

マウス ダブルクリック

中央マウス クリック

中央マウス ダブルクリック

XButton1 マウス クリック

XButton1 マウス ダブルクリック

XButton2 マウス クリック

XButton2 マウス ダブルクリック

MonthCalendar,

DateTimePicker,

RichTextBox,

HScrollBar,

VScrollBar

なし

なし

なし

なし

なし

なし

なし

なし

なし

なし

Button,

CheckBox,

RadioButton

Click

Click, Click

なし

なし

なし

なし

なし

なし

なし

なし

ListBox,

CheckedListBox,

ComboBox

Click

Click, DoubleClick

なし

なし

なし

なし

なし

なし

なし

なし

TextBox,

DomainUpDown,

NumericUpDown

Click

Click, DoubleClick

なし

なし

なし

なし

なし

なし

なし

なし

* TreeView,

* ListView

Click

Click, DoubleClick

Click

Click, DoubleClick

なし

なし

なし

なし

なし

なし

ProgressBar,

TrackBar

Click

Click, Click

Click

Click, Click

Click

Click, Click

Click

Click, Click

Click

Click, Click

Form,

DataGrid,

Label,

LinkLabel,

Panel,

GroupBox,

PictureBox,

Splitter,

StatusBar,

ToolBar,

TabPage,

** TabControl

Click

Click, DoubleClick

Click

Click, DoubleClick

Click

Click, DoubleClick

Click

Click, DoubleClick

Click

Click, DoubleClick

* マウス ポインタが子オブジェクト (TreeNode または ListViewItem) の上になければなりません。 ** TabControl には、TabPages コレクション内に少なくとも 1 つTabPage が必要です。
使用例使用例

ListBoxDoubleClick イベント使用してListBox に示すテキスト ファイルTextBox コントロール読み込むコード例次に示します

' This example uses the DoubleClick event of a ListBox to load text
 files  
' listed in the ListBox into a TextBox control. This example
' assumes that the ListBox, named listBox1, contains a list of valid
 file 
' names with path and that this event handler method
' is connected to the DoublClick event of a ListBox control named listBox1.
' This example requires code access permission to access files.
Private Sub listBox1_DoubleClick(ByVal
 sender As Object, ByVal
 e As System.EventArgs) Handles listBox1.DoubleClick
    ' Get the name of the file to open from the ListBox.
    Dim file As [String] = listBox1.SelectedItem.ToString()

    Try
        ' Determine if the file exists before loading.
        If System.IO.File.Exists(file) Then
            ' Open the file and use a TextReader to read the contents
 into the TextBox.
            Dim myFile As New
 System.IO.FileInfo(listBox1.SelectedItem.ToString())
            Dim myData As System.IO.TextReader
 = myFile.OpenText()

            textBox1.Text = myData.ReadToEnd()
            myData.Close()
        End If
        ' Exception is thrown by the OpenText method of the FileInfo
 class.
    Catch
        MessageBox.Show("The file you specified does not exist.")
        ' Exception is thrown by the ReadToEnd method of the TextReader
 class.
    Catch
     MessageBox.Show("There was a problem loading the file into
 the TextBox. Ensure that the file is a valid text file.")
    End Try
End Sub
// This example uses the DoubleClick event of a ListBox to load text
 files
// listed in the ListBox into a TextBox control. This example
// assumes that the ListBox, named listBox1, contains a list of valid
 file
// names with path and that this event handler method
// is connected to the DoublClick event of a ListBox control named listBox1.
// This example requires code access permission to access files.
private void listBox1_DoubleClick(object sender,
 System.EventArgs e)
{
    // Get the name of the file to open from the ListBox.
    String file = listBox1.SelectedItem.ToString();

    try
    {
        // Determine if the file exists before loading.
        if (System.IO.File.Exists(file))
        {
            // Open the file and use a TextReader to read the contents
 into the TextBox.
            System.IO.FileInfo myFile = new System.IO.FileInfo(listBox1.SelectedItem.ToString());
            System.IO.TextReader myData = myFile.OpenText();;

            textBox1.Text = myData.ReadToEnd();
            myData.Close();
        }
    }
        // Exception is thrown by the OpenText method of the FileInfo
 class.
    catch(System.IO.FileNotFoundException)
    {
        MessageBox.Show("The file you specified does not exist.");
    }
        // Exception is thrown by the ReadToEnd method of the TextReader
 class.
    catch(System.IO.IOException)
    {
        MessageBox.Show("There was a problem loading the file into the TextBox.
 Ensure that the file is a valid text file.");
    }
}
   // This example uses the DoubleClick event of a ListBox to load text
 files
   // listed in the ListBox into a TextBox control. This example
   // assumes that the ListBox, named listBox1, contains a list of valid
 file
   // names with path and that this event handler method
   // is connected to the DoublClick event of a ListBox control named
 listBox1.
   // This example requires code access permission to access files.
private:
   void listBox1_DoubleClick( Object^ /*sender*/, System::EventArgs^
 /*e*/ )
   {
      // Get the name of the file to open from the ListBox.
      String^ file = listBox1->SelectedItem->ToString();
      try
      {
         // Determine if the file exists before loading.
         if ( System::IO::File::Exists( file ) )
         {
            
            // Open the file and use a TextReader to read the contents
 into the TextBox.
            System::IO::FileInfo^ myFile = gcnew System::IO::FileInfo( listBox1->SelectedItem->ToString()
 );
            System::IO::TextReader^ myData = myFile->OpenText();
            ;
            textBox1->Text = myData->ReadToEnd();
            myData->Close();
         }
      }
      // Exception is thrown by the OpenText method of the FileInfo
 class.
      catch ( System::IO::FileNotFoundException^ ) 
      {
         MessageBox::Show( "The file you specified does not exist." );
      }
      // Exception is thrown by the ReadToEnd method of the TextReader
 class.
      catch ( System::IO::IOException^ ) 
      {
         MessageBox::Show( "There was a problem loading the file into the TextBox.
 Ensure that the file is a valid text file." );
      }
   }
// This example uses the DoubleClick event of a ListBox to load text
 files
// listed in the ListBox into a TextBox control. This example
// assumes that the ListBox, named listBox1, contains a list of valid
 file
// names with path and that this event handler method
// is connected to the DoublClick event of a ListBox control named listBox1.
// This example requires code access permission to access files.
private void listBox1_DoubleClick(Object sender,
 System.EventArgs e)
{
    // Get the name of the file to open from the ListBox.
    String file = listBox1.get_SelectedItem().ToString();
    try {
        // Determine if the file exists before loading.
        if (System.IO.File.Exists(file)) {
            // Open the file and use a TextReader to read the contents
 
            // into the TextBox.
            System.IO.FileInfo myFile = new System.IO.FileInfo(listBox1.
                get_SelectedItem().ToString());
            System.IO.TextReader myData = myFile.OpenText();
            textBox1.set_Text(myData.ReadToEnd());
            myData.Close();
        }
    }
    // Exception is thrown by the OpenText method of the FileInfo class.
    catch (System.IO.FileNotFoundException exp) {
        MessageBox.Show("The file you specified does not exist.");
    }
    // Exception is thrown by the ReadToEnd method of the TextReader
 class.
    catch (System.IO.IOException exp) {
        MessageBox.Show("There was a problem loading the file into the "
            + "TextBox. Ensure that the file is a valid text file.");
    }
} //listBox1_DoubleClick
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
Control クラス
Control メンバ
System.Windows.Forms 名前空間
OnDoubleClick
StandardClick
StandardDoubleClick
Control.Click イベント
MouseClick
MouseDoubleClick


このページでは「.NET Framework クラス ライブラリ リファレンス」からControl.DoubleClick イベントを検索した結果を表示しています。
Weblioに収録されているすべての辞書からControl.DoubleClick イベントを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からControl.DoubleClick イベント を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Control.DoubleClick イベント」の関連用語

Control.DoubleClick イベントのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Control.DoubleClick イベントのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS