CheckedListBox クラス

定義

各項目の左側にチェック ボックスが表示される ListBox を表示します。

public ref class CheckedListBox : System::Windows::Forms::ListBox
public class CheckedListBox : System.Windows.Forms.ListBox
[System.ComponentModel.LookupBindingProperties]
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class CheckedListBox : System.Windows.Forms.ListBox
[System.ComponentModel.LookupBindingProperties]
public class CheckedListBox : System.Windows.Forms.ListBox
type CheckedListBox = class
    inherit ListBox
[<System.ComponentModel.LookupBindingProperties>]
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type CheckedListBox = class
    inherit ListBox
[<System.ComponentModel.LookupBindingProperties>]
type CheckedListBox = class
    inherit ListBox
Public Class CheckedListBox
Inherits ListBox
継承
属性

次の例は、 のメソッド、プロパティ、およびコレクションを使用する方法を CheckedListBox示しています。 これは、プロジェクトにコピーした後に実行できる完全なサンプルです。 アイテムのチェックとオフを行うことができます。テキスト ボックスを使用して項目を追加し、保存ボタンをクリックしたら、チェックされたアイテムをクリアします。

#using <System.Data.dll>
#using <System.Windows.Forms.dll>
#using <System.dll>
#using <System.Drawing.dll>

using namespace System;
using namespace System::Drawing;
using namespace System::Collections;
using namespace System::ComponentModel;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::IO;

public ref class Form1: public System::Windows::Forms::Form
{
private:
   System::Windows::Forms::CheckedListBox^ checkedListBox1;
   System::Windows::Forms::TextBox^ textBox1;
   System::Windows::Forms::Button^ button1;
   System::Windows::Forms::Button^ button2;
   System::Windows::Forms::ListBox^ listBox1;
   System::Windows::Forms::Button^ button3;
   System::ComponentModel::Container^ components;

public:
   Form1()
   {
      InitializeComponent();
      
      // Sets up the initial objects in the CheckedListBox.
      array<String^>^myFruit = {"Apples","Oranges","Tomato"};
      checkedListBox1->Items->AddRange( myFruit );
      
      // Changes the selection mode from double-click to single click.
      checkedListBox1->CheckOnClick = true;
   }

public:
   ~Form1()
   {
      if ( components != nullptr )
      {
         delete components;
      }
   }

private:
   void InitializeComponent()
   {
      this->components = gcnew System::ComponentModel::Container;
      this->textBox1 = gcnew System::Windows::Forms::TextBox;
      this->checkedListBox1 = gcnew System::Windows::Forms::CheckedListBox;
      this->listBox1 = gcnew System::Windows::Forms::ListBox;
      this->button1 = gcnew System::Windows::Forms::Button;
      this->button2 = gcnew System::Windows::Forms::Button;
      this->button3 = gcnew System::Windows::Forms::Button;
      this->textBox1->Location = System::Drawing::Point( 144, 64 );
      this->textBox1->Size = System::Drawing::Size( 128, 20 );
      this->textBox1->TabIndex = 1;
      this->textBox1->TextChanged += gcnew System::EventHandler( this, &Form1::textBox1_TextChanged );
      this->checkedListBox1->Location = System::Drawing::Point( 16, 64 );
      this->checkedListBox1->Size = System::Drawing::Size( 120, 184 );
      this->checkedListBox1->TabIndex = 0;
      this->checkedListBox1->ItemCheck += gcnew System::Windows::Forms::ItemCheckEventHandler( this, &Form1::checkedListBox1_ItemCheck );
      this->listBox1->Location = System::Drawing::Point( 408, 64 );
      this->listBox1->Size = System::Drawing::Size( 128, 186 );
      this->listBox1->TabIndex = 3;
      this->button1->Enabled = false;
      this->button1->Location = System::Drawing::Point( 144, 104 );
      this->button1->Size = System::Drawing::Size( 104, 32 );
      this->button1->TabIndex = 2;
      this->button1->Text = "Add Fruit";
      this->button1->Click += gcnew System::EventHandler( this, &Form1::button1_Click );
      this->button2->Enabled = false;
      this->button2->Location = System::Drawing::Point( 288, 64 );
      this->button2->Size = System::Drawing::Size( 104, 32 );
      this->button2->TabIndex = 2;
      this->button2->Text = "Show Order";
      this->button2->Click += gcnew System::EventHandler( this, &Form1::button2_Click );
      this->button3->Enabled = false;
      this->button3->Location = System::Drawing::Point( 288, 104 );
      this->button3->Size = System::Drawing::Size( 104, 32 );
      this->button3->TabIndex = 2;
      this->button3->Text = "Save Order";
      this->button3->Click += gcnew System::EventHandler( this, &Form1::button3_Click );
      this->ClientSize = System::Drawing::Size( 563, 273 );
      array<System::Windows::Forms::Control^>^temp0 = {this->listBox1,this->button3,this->button2,this->button1,this->textBox1,this->checkedListBox1};
      this->Controls->AddRange( temp0 );
      this->Text = "Fruit Order";
   }

   // Adds the string if the text box has data in it.
   void button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      if (  !textBox1->Text->Equals( "" ) )
      {
         if ( checkedListBox1->CheckedItems->Contains( textBox1->Text ) == false )
                  checkedListBox1->Items->Add( textBox1->Text, CheckState::Checked );
         textBox1->Text = "";
      }
   }

   // Activates or deactivates the Add button.
   void textBox1_TextChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      if ( textBox1->Text->Equals( "" ) )
      {
         button1->Enabled = false;
      }
      else
      {
         button1->Enabled = true;
      }
   }

   // Moves the checked items from the CheckedListBox to the listBox.
   void button2_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      listBox1->Items->Clear();
      button3->Enabled = false;
      for ( int i = 0; i < checkedListBox1->CheckedItems->Count; i++ )
      {
         listBox1->Items->Add( checkedListBox1->CheckedItems[ i ] );

      }
      if ( listBox1->Items->Count > 0 )
            button3->Enabled = true;
   }

   // Activates the move button if there are checked items.
   void checkedListBox1_ItemCheck( Object^ /*sender*/, ItemCheckEventArgs^ e )
   {
      if ( e->NewValue == CheckState::Unchecked )
      {
         if ( checkedListBox1->CheckedItems->Count == 1 )
         {
            button2->Enabled = false;
         }
      }
      else
      {
         button2->Enabled = true;
      }
   }

   // Saves the items to a file.
   void button3_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      // Insert code to save a file.
      listBox1->Items->Clear();
      IEnumerator^ myEnumerator;
      myEnumerator = checkedListBox1->CheckedIndices->GetEnumerator();
      int y;
      while ( myEnumerator->MoveNext() != false )
      {
         y = safe_cast<Int32>(myEnumerator->Current);
         checkedListBox1->SetItemChecked( y, false );
      }

      button3->Enabled = false;
   }
};

[STAThread]
int main()
{
   Application::Run( gcnew Form1 );
}
namespace WindowsApplication1
{
   using System;
   using System.Drawing;
   using System.Collections;
   using System.ComponentModel;
   using System.Windows.Forms;
   using System.Data;
   using System.IO ;

   public class Form1 : System.Windows.Forms.Form
   {
      private System.Windows.Forms.CheckedListBox checkedListBox1;
      private System.Windows.Forms.TextBox textBox1;
      private System.Windows.Forms.Button button1;
      private System.Windows.Forms.Button button2;
      private System.Windows.Forms.ListBox listBox1;
      private System.Windows.Forms.Button button3;
      private System.ComponentModel.Container components;
      
      public Form1()
      {
         InitializeComponent();

         // Sets up the initial objects in the CheckedListBox.
         string[] myFruit = {"Apples", "Oranges","Tomato"};
         checkedListBox1.Items.AddRange(myFruit);

         // Changes the selection mode from double-click to single click.
         checkedListBox1.CheckOnClick = true;
      }

      protected override void Dispose( bool disposing )
      {
        if( disposing )
        {
            if (components != null) 
            {
              components.Dispose();
            }
        }
        base.Dispose( disposing );
      }

      private void InitializeComponent()
      {
         this.components = new System.ComponentModel.Container();
         this.textBox1 = new System.Windows.Forms.TextBox();
         this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
         this.listBox1 = new System.Windows.Forms.ListBox();
         this.button1 = new System.Windows.Forms.Button();
         this.button2 = new System.Windows.Forms.Button();
         this.button3 = new System.Windows.Forms.Button();
         this.textBox1.Location = new System.Drawing.Point(144, 64);
         this.textBox1.Size = new System.Drawing.Size(128, 20);
         this.textBox1.TabIndex = 1;
         this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
         this.checkedListBox1.Location = new System.Drawing.Point(16, 64);
         this.checkedListBox1.Size = new System.Drawing.Size(120, 184);
         this.checkedListBox1.TabIndex = 0;
         this.checkedListBox1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_ItemCheck);
         this.listBox1.Location = new System.Drawing.Point(408, 64);
         this.listBox1.Size = new System.Drawing.Size(128, 186);
         this.listBox1.TabIndex = 3;
         this.button1.Enabled = false;
         this.button1.Location = new System.Drawing.Point(144, 104);
         this.button1.Size = new System.Drawing.Size(104, 32);
         this.button1.TabIndex = 2;
         this.button1.Text = "Add Fruit";
         this.button1.Click += new System.EventHandler(this.button1_Click);
         this.button2.Enabled = false;
         this.button2.Location = new System.Drawing.Point(288, 64);
         this.button2.Size = new System.Drawing.Size(104, 32);
         this.button2.TabIndex = 2;
         this.button2.Text = "Show Order";
         this.button2.Click += new System.EventHandler(this.button2_Click);
         this.button3.Enabled = false;
         this.button3.Location = new System.Drawing.Point(288, 104);
         this.button3.Size = new System.Drawing.Size(104, 32);
         this.button3.TabIndex = 2;
         this.button3.Text = "Save Order";
         this.button3.Click += new System.EventHandler(this.button3_Click);
         this.ClientSize = new System.Drawing.Size(563, 273);
         this.Controls.AddRange(new System.Windows.Forms.Control[] {this.listBox1,
                                                        this.button3,
                                                        this.button2,
                                                        this.button1,
                                                        this.textBox1,
                                                        this.checkedListBox1});
         this.Text = "Fruit Order";
      }

      [STAThread]
      public static void Main(string[] args) 
      {
         Application.Run(new Form1());
      }

      // Adds the string if the text box has data in it.
      private void button1_Click(object sender, System.EventArgs e)
      {
         if(textBox1.Text != "")
         {
            if(checkedListBox1.CheckedItems.Contains(textBox1.Text)== false)
               checkedListBox1.Items.Add(textBox1.Text,CheckState.Checked);
            textBox1.Text = "";
         }
      }
      // Activates or deactivates the Add button.
      private void textBox1_TextChanged(object sender, System.EventArgs e)
      {
         if (textBox1.Text == "")
         {
            button1.Enabled = false;
         }
         else
         {
            button1.Enabled = true;
         }
        }

      // Moves the checked items from the CheckedListBox to the listBox.
      private void button2_Click(object sender, System.EventArgs e)
      {
         listBox1.Items.Clear();
         button3.Enabled=false;
         for (int i=0; i< checkedListBox1.CheckedItems.Count;i++)
         {
            listBox1.Items.Add(checkedListBox1.CheckedItems[i]);
         }
         if (listBox1.Items.Count>0)
            button3.Enabled=true;
      }
        // Activates the move button if there are checked items.
      private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
      {
         if(e.NewValue==CheckState.Unchecked)
         {
            if(checkedListBox1.CheckedItems.Count==1)
            {
               button2.Enabled = false;
            }
         }
         else
         {
            button2.Enabled = true;
         }
      }

        // Saves the items to a file.
      private void button3_Click(object sender, System.EventArgs e)
      {   
         // Insert code to save a file.
         listBox1.Items.Clear();
         IEnumerator myEnumerator;
         myEnumerator = checkedListBox1.CheckedIndices.GetEnumerator();
         int y;
         while (myEnumerator.MoveNext() != false)
         {
            y =(int) myEnumerator.Current;
            checkedListBox1.SetItemChecked(y, false);
         }
         button3.Enabled = false ;
      }        
    }
}
Option Explicit
Option Strict

Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.IO

Namespace WindowsApplication1
    Public Class Form1
        Inherits System.Windows.Forms.Form
        Private WithEvents checkedListBox1 As System.Windows.Forms.CheckedListBox
        Private WithEvents textBox1 As System.Windows.Forms.TextBox
        Private WithEvents button1 As System.Windows.Forms.Button
        Private WithEvents button2 As System.Windows.Forms.Button
        Private WithEvents listBox1 As System.Windows.Forms.ListBox
        Private WithEvents button3 As System.Windows.Forms.Button
        Private components As System.ComponentModel.Container
        
        
        Public Sub New()
            InitializeComponent()
            
            ' Sets up the initial objects in the CheckedListBox.
            Dim myFruit As String() =  {"Apples", "Oranges", "Tomato"}
            checkedListBox1.Items.AddRange(myFruit)
            
            ' Changes the selection mode from double-click to single click.
            checkedListBox1.CheckOnClick = True
        End Sub
        
        
        Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
            If disposing Then
                If (components IsNot Nothing) Then
                    components.Dispose()
                End If
            End If
            MyBase.Dispose(disposing)
        End Sub
         
        Private Sub InitializeComponent()
            Me.components = New System.ComponentModel.Container()
            Me.textBox1 = New System.Windows.Forms.TextBox()
            Me.checkedListBox1 = New System.Windows.Forms.CheckedListBox()
            Me.listBox1 = New System.Windows.Forms.ListBox()
            Me.button1 = New System.Windows.Forms.Button()
            Me.button2 = New System.Windows.Forms.Button()
            Me.button3 = New System.Windows.Forms.Button()
            Me.textBox1.Location = New System.Drawing.Point(144, 64)
            Me.textBox1.Size = New System.Drawing.Size(128, 20)
            Me.textBox1.TabIndex = 1
            Me.checkedListBox1.Location = New System.Drawing.Point(16, 64)
            Me.checkedListBox1.Size = New System.Drawing.Size(120, 184)
            Me.checkedListBox1.TabIndex = 0
            Me.listBox1.Location = New System.Drawing.Point(408, 64)
            Me.listBox1.Size = New System.Drawing.Size(128, 186)
            Me.listBox1.TabIndex = 3
            Me.button1.Enabled = False
            Me.button1.Location = New System.Drawing.Point(144, 104)
            Me.button1.Size = New System.Drawing.Size(104, 32)
            Me.button1.TabIndex = 2
            Me.button1.Text = "Add Fruit"
            Me.button2.Enabled = False
            Me.button2.Location = New System.Drawing.Point(288, 64)
            Me.button2.Size = New System.Drawing.Size(104, 32)
            Me.button2.TabIndex = 2
            Me.button2.Text = "Show Order"
            Me.button3.Enabled = False
            Me.button3.Location = New System.Drawing.Point(288, 104)
            Me.button3.Size = New System.Drawing.Size(104, 32)
            Me.button3.TabIndex = 2
            Me.button3.Text = "Save Order"
            Me.ClientSize = New System.Drawing.Size(563, 273)
            Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.listBox1, Me.button3, Me.button2, Me.button1, Me.textBox1, Me.checkedListBox1})
            Me.Text = "Fruit Order"
        End Sub
        
        <STAThread()> _
        Public Shared Sub Main()
            Application.Run(New Form1())
        End Sub
        
        
        ' Adds the string if the text box has data in it.
        Private Sub button1_Click(sender As Object, _
                e As System.EventArgs) Handles button1.Click
            If textBox1.Text <> "" Then
                If checkedListBox1.CheckedItems.Contains(textBox1.Text) = False Then
                    checkedListBox1.Items.Add(textBox1.Text, CheckState.Checked)
                End If
                textBox1.Text = ""
            End If
        End Sub
         
        ' Activates or deactivates the Add button.
        Private Sub textBox1_TextChanged(sender As Object, _
                e As System.EventArgs) Handles textBox1.TextChanged
            If textBox1.Text = "" Then
                button1.Enabled = False
            Else
                button1.Enabled = True
            End If
        End Sub
         
        
        ' Moves the checked items from the CheckedListBox to the listBox.
        Private Sub button2_Click(sender As Object, _
                e As System.EventArgs) Handles button2.Click
            listBox1.Items.Clear()
            button3.Enabled = False
            Dim i As Integer
            For i = 0 To checkedListBox1.CheckedItems.Count - 1
                listBox1.Items.Add(checkedListBox1.CheckedItems(i))
            Next i
            If listBox1.Items.Count > 0 Then
                button3.Enabled = True
            End If 
        End Sub
        
        ' Activates the move button if there are checked items.
        Private Sub checkedListBox1_ItemCheck(sender As Object, _
                e As ItemCheckEventArgs) Handles checkedListBox1.ItemCheck
            If e.NewValue = CheckState.Unchecked Then
                If checkedListBox1.CheckedItems.Count = 1 Then
                    button2.Enabled = False
                End If
            Else
                button2.Enabled = True
            End If
        End Sub
        
        
        ' Saves the items to a file.
        Private Sub button3_Click(sender As Object, _
                e As System.EventArgs) Handles button3.Click
            ' Insert code to save a file.
            listBox1.Items.Clear()
            For Each index in checkedListBox1.CheckedIndices.Cast(Of Integer).ToArray()
                checkedListBox1.SetItemChecked(index, False)
            Next
            button3.Enabled = False
        End Sub
    End Class
End Namespace 'WindowsApplication1

注釈

このコントロールは、ユーザーがキーボードまたはコントロールの右側にあるスクロール バーを使用して移動できる項目の一覧を表示します。 ユーザーは 1 つ以上の項目でチェックマークを配置でき、チェックされた項目は と CheckedListBox.CheckedIndexCollectionCheckedListBox.CheckedItemCollection移動できます。

実行時にオブジェクトをリストに追加するには、 メソッドを使用してオブジェクト参照の配列を AddRange 割り当てます。 リストには、各オブジェクトの既定の文字列値が表示されます。 メソッドを使用して、リストに個々の項目を Add 追加できます。

オブジェクトはCheckedListBox、列挙をChecked通じて、、Indeterminate、および の CheckState 3 つの状態をサポートしますUnchecked。 のユーザー インターフェイスCheckedListBoxにはメカニズムが提供されないため、コードで のIndeterminate状態を設定する必要があります。

が のtrue場合UseTabStopsCheckedListBox は項目のテキスト内のタブ文字を認識して展開し、列を作成します。 これらのタブ位置は事前設定されており、変更できません。 カスタム タブ位置を使用するには、 を にfalse設定UseTabStopsし、 を にtrue設定UseCustomTabOffsetsし、カスタム値をコレクションにCustomTabOffsets追加します。

注意

プロパティfalseが のUseCompatibleTextRendering場合、CustomTabOffsetsプロパティは無視され、標準のタブ オフセットに置き換えられます。

クラスは CheckedListBox 、次の 3 つのインデックス付きコレクションをサポートしています。

コレクション クラスのカプセル化
コントロールに CheckedListBox 含まれるすべての項目。 CheckedListBox.ObjectCollection
チェックされた項目 (不確定状態の項目を含む) は、コントロールに CheckedListBox 含まれる項目のサブセットです。 CheckedListBox.CheckedItemCollection
チェックされたインデックス。項目コレクション内のインデックスのサブセットです。 これらのインデックスは、チェック状態または不確定状態のアイテムを指定します。 CheckedListBox.CheckedIndexCollection

次の 3 つのテーブルは、クラスがサポートする 3 つのインデックス付きコレクションの CheckedListBox 例です。

最初のテーブルは、コントロール内の項目 (コントロールに含まれるすべての項目) のインデックス付きコレクションの例を示しています。

インデックス 項目 状態の確認
0 Object 1 Unchecked
1 Object 2 Checked
2 オブジェクト 3 Unchecked
3 オブジェクト 4 Indeterminate
4 オブジェクト 5 Checked

2 番目のテーブルは、チェックされた項目のインデックス付きコレクションの例を示しています。

インデックス 項目
0 Object 2
1 オブジェクト 4
2 オブジェクト 5

3 番目のテーブルは、チェックされた項目のインデックスのインデックス付きコレクションの例を示しています。

インデックス 項目のインデックス
0 1
1 3
2 4

コンストラクター

CheckedListBox()

CheckedListBox クラスの新しいインスタンスを初期化します。

フィールド

DefaultItemHeight

オーナー描画 ListBox の既定の項目の高さを指定します。

(継承元 ListBox)
NoMatches

検索中に一致する値が見つからなかったことを示します。

(継承元 ListBox)

プロパティ

AccessibilityObject

コントロールに割り当てられた AccessibleObject を取得します。

(継承元 Control)
AccessibleDefaultActionDescription

アクセシビリティ クライアント アプリケーションで使用されるコントロールの既定のアクションの説明を取得または設定します。

(継承元 Control)
AccessibleDescription

ユーザー補助クライアント アプリケーションによって使用される、コントロールの説明を取得または設定します。

(継承元 Control)
AccessibleName

ユーザー補助クライアント アプリケーションによって使用されるコントロールの名前を取得または設定します。

(継承元 Control)
AccessibleRole

コントロールのアクセスできる役割を取得または設定します。

(継承元 Control)
AllowDrop

ユーザーがコントロールにドラッグしたデータを、そのコントロールが受け入れることができるかどうかを示す値を取得または設定します。

(継承元 Control)
AllowSelection

ListBox でリスト項目の選択が現在有効かどうかを示す値を取得します。

(継承元 ListBox)
Anchor

コントロールがバインドされるコンテナーの端を取得または設定し、親のサイズ変更時に、コントロールのサイズがどのように変化するかを決定します。

(継承元 Control)
AutoScrollOffset

ScrollControlIntoView(Control) でのこのコントロールのスクロール先を取得または設定します。

(継承元 Control)
AutoSize

このクラスでは、このプロパティは使用されません。

(継承元 Control)
BackColor

コントロールの背景色を取得または設定します。

(継承元 ListBox)
BackgroundImage

このクラスでは、このプロパティは使用されません。

(継承元 ListBox)
BackgroundImageLayout

ListBox 列挙体で定義された ImageLayout の背景イメージ レイアウトを取得または設定します。

(継承元 ListBox)
BindingContext

コントロールの BindingContext を取得または設定します。

(継承元 Control)
BorderStyle

ListBox の周囲に描画される境界線の種類を取得または設定します。

(継承元 ListBox)
Bottom

コントロールの下端とコンテナーのクライアント領域の上端の間の距離をピクセルで取得します。

(継承元 Control)
Bounds

クライアント以外の要素を含むコントロールの、親コントロールに対する相対的なサイズおよび位置をピクセル単位で取得または設定します。

(継承元 Control)
CanEnableIme

ImeMode プロパティをアクティブな値に設定して、IME サポートを有効にできるかどうかを示す値を取得します。

(継承元 Control)
CanFocus

コントロールがフォーカスを受け取ることができるかどうかを示す値を取得します。

(継承元 Control)
CanRaiseEvents

コントロールでイベントが発生するかどうかを決定します。

(継承元 Control)
CanSelect

コントロールを選択できるかどうかを示す値を取得します。

(継承元 Control)
Capture

コントロールがマウスをキャプチャしたかどうかを示す値を取得または設定します。

(継承元 Control)
CausesValidation

そのコントロールが原因で、フォーカスを受け取ると検証が必要なコントロールに対して、検証が実行されるかどうかを示す値を取得または設定します。

(継承元 Control)
CheckedIndices

この CheckedListBox 内でチェックされているインデックスのコレクション。

CheckedItems

この CheckedListBox 内でチェックされている項目のコレクション。

CheckOnClick

項目が選択されたときに、チェック ボックスを切り替えるかどうかを示す値を取得または設定します。

ClientRectangle

コントロールのクライアント領域を表す四角形を取得します。

(継承元 Control)
ClientSize

コントロールのクライアント領域の高さと幅を取得または設定します。

(継承元 Control)
ColumnWidth

複数列の ListBox の列幅を取得または設定します。

(継承元 ListBox)
CompanyName

コントロールを含んでいるアプリケーションの会社または作成者の名前を取得します。

(継承元 Control)
Container

IContainer を含む Component を取得します。

(継承元 Component)
ContainsFocus

コントロール、またはその子コントロールの 1 つに、現在入力フォーカスがあるかどうかを示す値を取得します。

(継承元 Control)
ContextMenu

コントロールに関連付けられたショートカット メニューを取得または設定します。

(継承元 Control)
ContextMenuStrip

このコントロールに関連付けられている ContextMenuStrip を取得または設定します。

(継承元 Control)
Controls

コントロール内に格納されているコントロールのコレクションを取得します。

(継承元 Control)
Created

コントロールが作成されているかどうかを示す値を取得します。

(継承元 Control)
CreateParams

コントロール ハンドルが作成されるときに必要な作成パラメーターを取得します。

Cursor

マウス ポインターがコントロールの上にあるときに表示されるカーソルを取得または設定します。

(継承元 Control)
CustomTabOffsets

ListBox 内の項目間のタブ幅を取得します。

(継承元 ListBox)
DataBindings

コントロールのデータ連結を取得します。

(継承元 Control)
DataContext

データ バインディングの目的でデータ コンテキストを取得または設定します。 これはアンビエント プロパティです。

(継承元 Control)
DataManager

このコントロールに関連付けられている CurrencyManager を取得します。

(継承元 ListControl)
DataSource

コントロールのデータ ソースを取得または設定します。

DefaultCursor

コントロールの既定のカーソルを取得または設定します。

(継承元 Control)
DefaultImeMode

コントロールがサポートしている既定の IME (Input Method Editor) モードを取得します。

(継承元 Control)
DefaultMargin

コントロール間に既定で指定されている空白をピクセル単位で取得します。

(継承元 Control)
DefaultMaximumSize

コントロールの既定の最大サイズとして指定されている長さおよび高さをピクセル単位で取得します。

(継承元 Control)
DefaultMinimumSize

コントロールの既定の最小サイズとして指定されている長さおよび高さをピクセル単位で取得します。

(継承元 Control)
DefaultPadding

コントロールの内容の内部間隔をピクセル単位で取得します。

(継承元 Control)
DefaultSize

コントロールの既定のサイズを取得します。

(継承元 ListBox)
DesignMode

Component が現在デザイン モードかどうかを示す値を取得します。

(継承元 Component)
DeviceDpi

コントロールが現在表示されているディスプレイ デバイスの DPI 値を取得します。

(継承元 Control)
DisplayMember

一覧を表示するリスト ボックスに格納されているオブジェクトのプロパティを表す文字列を取得または設定します。

DisplayRectangle

コントロールの表示領域を表す四角形を取得します。

(継承元 Control)
Disposing

基本 Control クラスが破棄処理中かどうかを示す値を取得します。

(継承元 Control)
Dock

コントロールの境界のうち、親コントロールにドッキングする境界を取得または設定します。また、コントロールのサイズが親コントロール内でどのように変化するかを決定します。

(継承元 Control)
DoubleBuffered

ちらつきを軽減または回避するために、2 次バッファーを使用してコントロールの表面を再描画するかどうかを示す値を取得または設定します。

(継承元 Control)
DrawMode

CheckedListBox の要素を描画するときのモードを示す値を取得します。 このクラスでは、このプロパティは使用されません。

Enabled

コントロールがユーザーとの対話に応答できるかどうかを示す値を取得または設定します。

(継承元 Control)
Events

Component に結び付けられているイベント ハンドラーのリストを取得します。

(継承元 Component)
Focused

コントロールに入力フォーカスがあるかどうかを示す値を取得します。

(継承元 Control)
Font

コントロールによって表示されるテキストのフォントを取得または設定します。

(継承元 ListBox)
FontHeight

コントロールのフォントの高さを取得または設定します。

(継承元 Control)
ForeColor

コントロールの前景色を取得または設定します。

(継承元 ListBox)
FormatInfo

カスタムの書式設定動作を定義する IFormatProvider を取得または設定します。

(継承元 ListControl)
FormatString

値の表示方法を示す書式指定子文字を取得または設定します。

(継承元 ListControl)
FormattingEnabled

書式設定を DisplayMemberListControl プロパティに適用するかどうかを示す値を取得または設定します。

(継承元 ListControl)
Handle

コントロールのバインド先のウィンドウ ハンドルを取得します。

(継承元 Control)
HasChildren

コントロールに 1 つ以上の子コントロールが格納されているかどうかを示す値を取得します。

(継承元 Control)
Height

コントロールの高さを取得または設定します。

(継承元 Control)
HorizontalExtent

ListBox の水平スクロール バーでスクロールできる幅を取得または設定します。

(継承元 ListBox)
HorizontalScrollbar

水平スクロール バーをコントロールに表示するかどうかを示す値を取得または設定します。

(継承元 ListBox)
ImeMode

コントロールの IME (Input Method Editor) モードを取得または設定します。

(継承元 Control)
ImeModeBase

コントロールの IME モードを取得または設定します。

(継承元 Control)
IntegralHeight

一部の項目しか表示されない状況を避けるために、コントロールのサイズを変更するかどうかを示す値を取得または設定します。

(継承元 ListBox)
InvokeRequired

呼び出し元がコントロールの作成されたスレッドと異なるスレッド上にあるため、コントロールに対してメソッドの呼び出しを実行するときに、呼び出し元で invoke メソッドを呼び出す必要があるかどうかを示す値を取得します。

(継承元 Control)
IsAccessible

コントロールがユーザー補助アプリケーションに表示されるかどうかを示す値を取得または設定します。

(継承元 Control)
IsAncestorSiteInDesignMode

このコントロールの先祖の 1 つがサイトに存在し、そのサイトが DesignMode 内にあるかどうかを示します。 このプロパティは読み取り専用です。

(継承元 Control)
IsDisposed

コントロールが破棄されているかどうかを示す値を取得します。

(継承元 Control)
IsHandleCreated

コントロールにハンドルが関連付けられているかどうかを示す値を取得します。

(継承元 Control)
IsMirrored

コントロールがミラー化されるかどうかを示す値を取得します。

(継承元 Control)
ItemHeight

項目領域の高さを取得します。

Items

この CheckedListBox 内の項目のコレクションを取得します。

LayoutEngine

コントロールのレイアウト エンジンのキャッシュ インスタンスを取得します。

(継承元 Control)
Left

コントロールの左端とコンテナーのクライアント領域の左端の間の距離をピクセルで取得または設定します。

(継承元 Control)
Location

コンテナーの左上隅に対する相対座標として、コントロールの左上隅の座標を取得または設定します。

(継承元 Control)
Margin

コントロール間の空白を取得または設定します。

(継承元 Control)
MaximumSize

GetPreferredSize(Size) が指定できる上限のサイズを取得または設定します。

(継承元 Control)
MinimumSize

GetPreferredSize(Size) が指定できる下限のサイズを取得または設定します。

(継承元 Control)
MultiColumn

ListBox が複数列をサポートするかどうかを示す値を取得または設定します。

(継承元 ListBox)
Name

コントロールの名前を取得または設定します。

(継承元 Control)
Padding

CheckedListBox の埋め込みを取得または設定します。 このクラスでは、このプロパティは使用されません。

Padding

このクラスでは、このプロパティは使用されません。

(継承元 ListBox)
Parent

コントロールの親コンテナーを取得または設定します。

(継承元 Control)
PreferredHeight

ListBox 内のすべての項目を組み合わせた高さを取得します。

(継承元 ListBox)
PreferredSize

コントロールが適合する四角形領域のサイズを取得します。

(継承元 Control)
ProductName

コントロールを格納しているアセンブリの製品名を取得します。

(継承元 Control)
ProductVersion

コントロールを格納しているアセンブリのバージョンを取得します。

(継承元 Control)
RecreatingHandle

コントロールが現在そのコントロールのハンドルを再作成中かどうかを示す値を取得します。

(継承元 Control)
Region

コントロールに関連付けられたウィンドウ領域を取得または設定します。

(継承元 Control)
RenderRightToLeft
古い.
古い.

このプロパティは使用されなくなりました。

(継承元 Control)
ResizeRedraw

サイズが変更されたときに、コントロールがコントロール自体を再描画するかどうかを示す値を取得または設定します。

(継承元 Control)
Right

コントロールの右端とコンテナーのクライアント領域の左端の間の距離をピクセルで取得します。

(継承元 Control)
RightToLeft

コントロールがテキストを右から左に表示するかどうかを示す値を取得または設定します。

(継承元 ListBox)
ScaleChildren

子コントロールの表示スケールを決定する値を取得します。

(継承元 Control)
ScrollAlwaysVisible

垂直スクロール バーを常に表示するかどうかを示す値を取得または設定します。

(継承元 ListBox)
SelectedIndex

ListBox 内で現在選択されている項目の 0 から始まるインデックス番号を取得または設定します。

(継承元 ListBox)
SelectedIndices

ListBox 内で現在選択されているすべての項目の 0 から始まるインデックス番号を格納するコレクションを取得します。

(継承元 ListBox)
SelectedItem

ListBox 内で現在選択されている項目を取得または設定します。

(継承元 ListBox)
SelectedItems

ListBox 内で現在選択されている項目を格納するコレクションを取得します。

(継承元 ListBox)
SelectedValue

ValueMember プロパティで指定したメンバー プロパティの値を取得または設定します。

(継承元 ListControl)
SelectionMode

選択モードを指定している値を取得または設定します。

ShowFocusCues

コントロールがフォーカスを示す四角形を表示する必要があるかどうかを示す値を取得します。

(継承元 Control)
ShowKeyboardCues

ユーザー インターフェイスがキーボード アクセラレータを表示または非表示にする適切な状態かどうかを示す値を取得します。

(継承元 Control)
Site

コントロールのサイトを取得または設定します。

(継承元 Control)
Size

コントロールの高さと幅を取得または設定します。

(継承元 Control)
Sorted

ListBox 内の項目をアルファベット順に並べ替えるかどうかを示す値を取得または設定します。

(継承元 ListBox)
TabIndex

コンテナー内のコントロールのタブ オーダーを取得または設定します。

(継承元 Control)
TabStop

ユーザーが Tab キーを使用することによってこのコントロールにフォーカスを移すことができるかどうかを示す値を取得または設定します。

(継承元 Control)
Tag

コントロールに関するデータを格納するオブジェクトを取得または設定します。

(継承元 Control)
Text

ListBox 内で現在選択されている項目のテキストを取得または検索します。

(継承元 ListBox)
ThreeDCheckBoxes

チェック ボックスの ButtonStateFlat または Normal のどちらであるかを示す値を取得または設定します。

Top

コントロールの上端とコンテナーのクライアント領域の上端の間の距離をピクセル単位で取得または設定します。

(継承元 Control)
TopIndex

ListBox に最初に表示される項目のインデックスを取得または設定します。

(継承元 ListBox)
TopLevelControl

別の Windows フォーム コントロールを親として持たない親コントロールを取得します。 一般的に、これは、コントロールを格納している最も外側の Form です。

(継承元 Control)
UseCompatibleTextRendering

クラス (GDI+) またはクラス (GDI) を使用してテキストを Graphics レンダリングするかどうかを決定する値を TextRenderer 取得または設定します。

UseCustomTabOffsets

ListBox 整数配列を使用して CustomTabOffsets が文字列を描画するときに、タブ文字を認識および展開するかどうかを示す値を取得または設定します。

(継承元 ListBox)
UseTabStops

ListBox で文字列を描画するときにタブ文字を認識して展開するかどうかを示す値を取得または設定します。

(継承元 ListBox)
UseWaitCursor

現在のコントロールおよびすべての子コントロールに待機カーソルを使用するかどうかを示す値を取得または設定します。

(継承元 Control)
ValueMember

値の描画元のデータ ソースのプロパティを指定する文字列を取得または設定します。

Visible

コントロールとそのすべての子コントロールが表示されているかどうかを示す値を取得または設定します。

(継承元 Control)
Width

コントロールの幅を取得または設定します。

(継承元 Control)
WindowTarget

このクラスでは、このプロパティは使用されません。

(継承元 Control)

メソッド

AccessibilityNotifyClients(AccessibleEvents, Int32)

指定した子コントロールの指定した AccessibleEvents をユーザー補助クライアント アプリケーションに通知します。

(継承元 Control)
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

指定した子コントロールの指定した AccessibleEvents をユーザー補助クライアント アプリケーションに通知します。

(継承元 Control)
AddItemsCore(Object[])
古い.
古い.

このメンバーは互換性のために残されており、代わりのメンバーはありません。

(継承元 ListBox)
BeginInvoke(Action)

コントロールの基になるハンドルが作成されたスレッド上で、指定したデリゲートを非同期的に実行します。

(継承元 Control)
BeginInvoke(Delegate)

コントロールの基になるハンドルが作成されたスレッド上で、指定したデリゲートを非同期的に実行します。

(継承元 Control)
BeginInvoke(Delegate, Object[])

コントロールの基になるハンドルが作成されたスレッド上で、指定した引数で指定したデリゲートを非同期的に実行します。

(継承元 Control)
BeginUpdate()

項目を ListBox に 1 つずつ追加するときにパフォーマンスを維持するには、EndUpdate() メソッドが呼び出されるまでコントロールを再描画しないようにします。

(継承元 ListBox)
BringToFront()

コントロールを z オーダーの最前面へ移動します。

(継承元 Control)
ClearSelected()

ListBox 内のすべての項目を選択解除します。

(継承元 ListBox)
Contains(Control)

指定したコントロールが、コントロールの子かどうかを示す値を取得します。

(継承元 Control)
CreateAccessibilityInstance()

CheckedListBox コントロールの新しいユーザー補助オブジェクトを作成します。

CreateControl()

ハンドルおよび子コントロールの作成を含めて、強制的に表示子コントロールを作成します。

(継承元 Control)
CreateControlsInstance()

コントロールのコントロール コレクションの新しいインスタンスを作成します。

(継承元 Control)
CreateGraphics()

コントロールの Graphics を作成します。

(継承元 Control)
CreateHandle()

コントロールのハンドルを作成します。

(継承元 Control)
CreateItemCollection()

項目コレクションの新しいインスタンスを作成します。

CreateObjRef(Type)

リモート オブジェクトとの通信に使用するプロキシの生成に必要な情報をすべて格納しているオブジェクトを作成します。

(継承元 MarshalByRefObject)
DefWndProc(Message)

指定したメッセージを既定のウィンドウ プロシージャに送信します。

(継承元 Control)
DestroyHandle()

コントロールに関連付けられたハンドルを破棄します。

(継承元 Control)
Dispose()

Component によって使用されているすべてのリソースを解放します。

(継承元 Component)
Dispose(Boolean)

Control とその子コントロールが使用しているアンマネージド リソースを解放します。オプションで、マネージド リソースも解放します。

(継承元 Control)
DoDragDrop(Object, DragDropEffects)

ドラッグ アンド ドロップ操作を開始します。

(継承元 Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

ドラッグ操作を開始します。

(継承元 Control)
DrawToBitmap(Bitmap, Rectangle)

指定したビットマップへのレンダリングをサポートします。

(継承元 Control)
EndInvoke(IAsyncResult)

渡された IAsyncResult によって表される、非同期操作の戻り値を取得します。

(継承元 Control)
EndUpdate()

ListBox メソッドによって描画が中断された後、BeginUpdate() コントロールの描画を再開します。

(継承元 ListBox)
Equals(Object)

指定されたオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
FilterItemOnProperty(Object)

ListControl の項目がオブジェクトのプロパティである場合に、バインド先の項目を指定して、バインド元の項目の現在の値を取得します。

(継承元 ListControl)
FilterItemOnProperty(Object, String)

ListControl の項目がオブジェクトのプロパティである場合に、バインド先の項目とプロパティ名を指定して、バインド元の項目の現在の値を取得します。

(継承元 ListControl)
FindForm()

コントロールがあるフォームを取得します。

(継承元 Control)
FindString(String)

ListBox 内で、指定した文字列で始まる最初の項目を検索します。

(継承元 ListBox)
FindString(String, Int32)

ListBox 内で、指定した文字列で始まる最初の項目を検索します。 指定した開始インデックスから検索が開始します。

(継承元 ListBox)
FindStringExact(String)

ListBox 内で、指定した文字列と正確に一致する最初の項目を検索します。

(継承元 ListBox)
FindStringExact(String, Int32)

ListBox 内で、指定した文字列と正確に一致する最初の項目を検索します。 指定した開始インデックスから検索が開始します。

(継承元 ListBox)
Focus()

コントロールに入力フォーカスを設定します。

(継承元 Control)
GetAccessibilityObjectById(Int32)

指定した AccessibleObject を取得します。

(継承元 Control)
GetAutoSizeMode()

AutoSize プロパティが有効なときのコントロールの動作を示す値を取得します。

(継承元 Control)
GetChildAtPoint(Point)

指定した座標にある子コントロールを取得します。

(継承元 Control)
GetChildAtPoint(Point, GetChildAtPointSkip)

特定の種類の子コントロールを無視するかどうかを指定して、指定した座標にある子コントロールを取得します。

(継承元 Control)
GetContainerControl()

コントロールの親チェインの 1 つ上の ContainerControl を返します。

(継承元 Control)
GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetItemChecked(Int32)

指定した項目がチェックされているかどうかを示す値を返します。

GetItemCheckState(Int32)

現在の項目のチェックの状態を示す値を返します。

GetItemHeight(Int32)

ListBox 内の項目の高さを返します。

(継承元 ListBox)
GetItemRectangle(Int32)

ListBox 内の項目の外接する四角形を返します。

(継承元 ListBox)
GetItemText(Object)

指定した項目のテキスト形式を返します。

(継承元 ListControl)
GetLifetimeService()
古い.

対象のインスタンスの有効期間ポリシーを制御する、現在の有効期間サービス オブジェクトを取得します。

(継承元 MarshalByRefObject)
GetNextControl(Control, Boolean)

子コントロールのタブ オーダー内の 1 つ前または 1 つ後ろのコントロールを取得します。

(継承元 Control)
GetPreferredSize(Size)

コントロールが収まる四角形の領域のサイズを取得します。

(継承元 Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

ListBox のスケールが設定される境界を取得します。

(継承元 ListBox)
GetSelected(Int32)

指定した項目が選択されているかどうかを示す値を返します。

(継承元 ListBox)
GetService(Type)

Component またはその Container で提供されるサービスを表すオブジェクトを返します。

(継承元 Component)
GetStyle(ControlStyles)

コントロールの指定したコントロール スタイル ビットの値を取得します。

(継承元 Control)
GetTopLevel()

コントロールがトップレベル コントロールかどうかを判断します。

(継承元 Control)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
Hide()

コントロールをユーザーに対して非表示にします。

(継承元 Control)
IndexFromPoint(Int32, Int32)

指定した座標にある項目の 0 から始まるインデックス番号を返します。

(継承元 ListBox)
IndexFromPoint(Point)

指定した座標にある項目の 0 から始まるインデックス番号を返します。

(継承元 ListBox)
InitializeLifetimeService()
古い.

このインスタンスの有効期間ポリシーを制御する有効期間サービス オブジェクトを取得します。

(継承元 MarshalByRefObject)
InitLayout()

コントロールが別のコンテナーに追加された後、呼び出されます。

(継承元 Control)
Invalidate()

コントロールの表面全体を無効化して、コントロールを再描画します。

(継承元 Control)
Invalidate(Boolean)

コントロールの特定の領域を無効にし、そのコントロールに描画メッセージを送信します。 オプションとして、そのコントロールに割り当てられている子コントロールも無効にします。

(継承元 Control)
Invalidate(Rectangle)

コントロールの指定した領域を無効にし (そのコントロールの次の描画操作で再描画される領域を示す更新領域に追加し)、描画メッセージがそのコントロールに送信されるようにします。

(継承元 Control)
Invalidate(Rectangle, Boolean)

コントロールの指定した領域を無効にし (そのコントロールの次の描画操作で再描画される領域を示す更新領域に追加し)、描画メッセージがそのコントロールに送信されるようにします。 オプションとして、そのコントロールに割り当てられている子コントロールも無効にします。

(継承元 Control)
Invalidate(Region)

コントロールの指定した領域を無効にし (そのコントロールの次の描画操作で再描画される領域を示す更新領域に追加し)、描画メッセージがそのコントロールに送信されるようにします。

(継承元 Control)
Invalidate(Region, Boolean)

コントロールの指定した領域を無効にし (そのコントロールの次の描画操作で再描画される領域を示す更新領域に追加し)、描画メッセージがそのコントロールに送信されるようにします。 オプションとして、そのコントロールに割り当てられている子コントロールも無効にします。

(継承元 Control)
Invoke(Action)

コントロールの基になるウィンドウ ハンドルを所有するスレッド上で、指定したデリゲートを実行します。

(継承元 Control)
Invoke(Delegate)

コントロールの基になるウィンドウ ハンドルを所有するスレッド上で、指定したデリゲートを実行します。

(継承元 Control)
Invoke(Delegate, Object[])

コントロールの基になるウィンドウ ハンドルを所有するスレッド上で、指定した引数リストを使用して、指定したデリゲートを実行します。

(継承元 Control)
Invoke<T>(Func<T>)

コントロールの基になるウィンドウ ハンドルを所有するスレッド上で、指定したデリゲートを実行します。

(継承元 Control)
InvokeGotFocus(Control, EventArgs)

指定したコントロールの GotFocus イベントを発生させます。

(継承元 Control)
InvokeLostFocus(Control, EventArgs)

指定したコントロールの LostFocus イベントを発生させます。

(継承元 Control)
InvokeOnClick(Control, EventArgs)

指定したコントロールの Click イベントを発生させます。

(継承元 Control)
InvokePaint(Control, PaintEventArgs)

指定したコントロールの Paint イベントを発生させます。

(継承元 Control)
InvokePaintBackground(Control, PaintEventArgs)

指定したコントロールの PaintBackground イベントを発生させます。

(継承元 Control)
IsInputChar(Char)

文字が、コントロールによって認識される入力文字かどうかを判断します。

(継承元 Control)
IsInputKey(Keys)

PageUp、PageDown、Home、End などの特殊な入力キーを処理します。

(継承元 ListControl)
LogicalToDeviceUnits(Int32)

論理 DPI 値をその同等 DeviceUnit DPI 値に変換します。

(継承元 Control)
LogicalToDeviceUnits(Size)

現在の DPI に合わせて拡大縮小し、幅と高さを最も近い整数値に丸めることで論理単位からデバイス単位にサイズを変換します。

(継承元 Control)
MemberwiseClone()

現在の Object の簡易コピーを作成します。

(継承元 Object)
MemberwiseClone(Boolean)

現在の MarshalByRefObject オブジェクトの簡易コピーを作成します。

(継承元 MarshalByRefObject)
NotifyInvalidate(Rectangle)

無効化するコントロールの領域を指定して、Invalidated イベントを発生させます。

(継承元 Control)
OnAutoSizeChanged(EventArgs)

AutoSizeChanged イベントを発生させます。

(継承元 Control)
OnBackColorChanged(EventArgs)

BackColorChanged イベントを発生させます。

OnBackgroundImageChanged(EventArgs)

BackgroundImageChanged イベントを発生させます。

(継承元 Control)
OnBackgroundImageLayoutChanged(EventArgs)

BackgroundImageLayoutChanged イベントを発生させます。

(継承元 Control)
OnBindingContextChanged(EventArgs)

BindingContextChanged イベントを発生させます。

(継承元 ListControl)
OnCausesValidationChanged(EventArgs)

CausesValidationChanged イベントを発生させます。

(継承元 Control)
OnChangeUICues(UICuesEventArgs)

ChangeUICues イベントを発生させます。

(継承元 ListBox)
OnClick(EventArgs)

Click イベントを発生させます。

OnClientSizeChanged(EventArgs)

ClientSizeChanged イベントを発生させます。

(継承元 Control)
OnContextMenuChanged(EventArgs)

ContextMenuChanged イベントを発生させます。

(継承元 Control)
OnContextMenuStripChanged(EventArgs)

ContextMenuStripChanged イベントを発生させます。

(継承元 Control)
OnControlAdded(ControlEventArgs)

ControlAdded イベントを発生させます。

(継承元 Control)
OnControlRemoved(ControlEventArgs)

ControlRemoved イベントを発生させます。

(継承元 Control)
OnCreateControl()

CreateControl() メソッドを発生させます。

(継承元 Control)
OnCursorChanged(EventArgs)

CursorChanged イベントを発生させます。

(継承元 Control)
OnDataContextChanged(EventArgs)

各項目の左側にチェック ボックスが表示される ListBox を表示します。

(継承元 Control)
OnDataSourceChanged(EventArgs)

DataSourceChanged イベントを発生させます。

(継承元 ListBox)
OnDisplayMemberChanged(EventArgs)

DisplayMemberChanged イベントを発生させます。

(継承元 ListBox)
OnDockChanged(EventArgs)

DockChanged イベントを発生させます。

(継承元 Control)
OnDoubleClick(EventArgs)

DoubleClick イベントを発生させます。

(継承元 Control)
OnDpiChangedAfterParent(EventArgs)

DpiChangedAfterParent イベントを発生させます。

(継承元 Control)
OnDpiChangedBeforeParent(EventArgs)

DpiChangedBeforeParent イベントを発生させます。

(継承元 Control)
OnDragDrop(DragEventArgs)

DragDrop イベントを発生させます。

(継承元 Control)
OnDragEnter(DragEventArgs)

DragEnter イベントを発生させます。

(継承元 Control)
OnDragLeave(EventArgs)

DragLeave イベントを発生させます。

(継承元 Control)
OnDragOver(DragEventArgs)

DragOver イベントを発生させます。

(継承元 Control)
OnDrawItem(DrawItemEventArgs)

DrawItem イベントを発生させます。

OnEnabledChanged(EventArgs)

EnabledChanged イベントを発生させます。

(継承元 Control)
OnEnter(EventArgs)

Enter イベントを発生させます。

(継承元 Control)
OnFontChanged(EventArgs)

FontChanged イベントを発生させます。

OnForeColorChanged(EventArgs)

ForeColorChanged イベントを発生させます。

(継承元 Control)
OnFormat(ListControlConvertEventArgs)

Format イベントを発生させます。

(継承元 ListControl)
OnFormatInfoChanged(EventArgs)

FormatInfoChanged イベントを発生させます。

(継承元 ListControl)
OnFormatStringChanged(EventArgs)

FormatStringChanged イベントを発生させます。

(継承元 ListControl)
OnFormattingEnabledChanged(EventArgs)

FormattingEnabledChanged イベントを発生させます。

(継承元 ListControl)
OnGiveFeedback(GiveFeedbackEventArgs)

GiveFeedback イベントを発生させます。

(継承元 Control)
OnGotFocus(EventArgs)

GotFocus イベントを発生させます。

(継承元 ListBox)
OnHandleCreated(EventArgs)

HandleCreated イベントを発生させます。

OnHandleDestroyed(EventArgs)

項目が正しく設定および消去されるようオーバーライドされています。 継承コントロールでは、base.OnHandleDestroyed を呼び出す必要があります。

(継承元 ListBox)
OnHelpRequested(HelpEventArgs)

HelpRequested イベントを発生させます。

(継承元 Control)
OnImeModeChanged(EventArgs)

ImeModeChanged イベントを発生させます。

(継承元 Control)
OnInvalidated(InvalidateEventArgs)

Invalidated イベントを発生させます。

(継承元 Control)
OnItemCheck(ItemCheckEventArgs)

ItemCheck イベントを発生させます。

OnKeyDown(KeyEventArgs)

KeyDown イベントを発生させます。

(継承元 Control)
OnKeyPress(KeyPressEventArgs)

KeyPress イベントを発生させます。

OnKeyUp(KeyEventArgs)

KeyUp イベントを発生させます。

(継承元 Control)
OnLayout(LayoutEventArgs)

Layout イベントを発生させます。

(継承元 Control)
OnLeave(EventArgs)

Leave イベントを発生させます。

(継承元 Control)
OnLocationChanged(EventArgs)

LocationChanged イベントを発生させます。

(継承元 Control)
OnLostFocus(EventArgs)

LostFocus イベントを発生させます。

(継承元 Control)
OnMarginChanged(EventArgs)

MarginChanged イベントを発生させます。

(継承元 Control)
OnMeasureItem(MeasureItemEventArgs)

MeasureItem イベントを発生させます。

OnMouseCaptureChanged(EventArgs)

MouseCaptureChanged イベントを発生させます。

(継承元 Control)
OnMouseClick(MouseEventArgs)

MouseClick イベントを発生させます。

(継承元 Control)
OnMouseDoubleClick(MouseEventArgs)

MouseDoubleClick イベントを発生させます。

(継承元 Control)
OnMouseDown(MouseEventArgs)

MouseDown イベントを発生させます。

(継承元 Control)
OnMouseEnter(EventArgs)

MouseEnter イベントを発生させます。

(継承元 Control)
OnMouseHover(EventArgs)

MouseHover イベントを発生させます。

(継承元 Control)
OnMouseLeave(EventArgs)

MouseLeave イベントを発生させます。

(継承元 Control)
OnMouseMove(MouseEventArgs)

MouseMove イベントを発生させます。

(継承元 Control)
OnMouseUp(MouseEventArgs)

MouseUp イベントを発生させます。

(継承元 Control)
OnMouseWheel(MouseEventArgs)

MouseWheel イベントを発生させます。

(継承元 Control)
OnMove(EventArgs)

Move イベントを発生させます。

(継承元 Control)
OnNotifyMessage(Message)

コントロールに Windows メッセージを通知します。

(継承元 Control)
OnPaddingChanged(EventArgs)

PaddingChanged イベントを発生させます。

(継承元 Control)
OnPaint(PaintEventArgs)

Paint イベントを発生させます。

(継承元 Control)
OnPaintBackground(PaintEventArgs)

コントロールの背景を描画します。

(継承元 Control)
OnParentBackColorChanged(EventArgs)

コントロールのコンテナーの BackColorChanged プロパティ値が変更された場合に、BackColor イベントを発生させます。

(継承元 Control)
OnParentBackgroundImageChanged(EventArgs)

コントロールのコンテナーの BackgroundImageChanged プロパティ値が変更された場合に、BackgroundImage イベントを発生させます。

(継承元 Control)
OnParentBindingContextChanged(EventArgs)

コントロールのコンテナーの BindingContextChanged プロパティ値が変更された場合に、BindingContext イベントを発生させます。

(継承元 Control)
OnParentChanged(EventArgs)

ParentChanged イベントを発生させます。

(継承元 ListBox)
OnParentCursorChanged(EventArgs)

CursorChanged イベントを発生させます。

(継承元 Control)
OnParentDataContextChanged(EventArgs)

各項目の左側にチェック ボックスが表示される ListBox を表示します。

(継承元 Control)
OnParentEnabledChanged(EventArgs)

コントロールのコンテナーの EnabledChanged プロパティ値が変更された場合に、Enabled イベントを発生させます。

(継承元 Control)
OnParentFontChanged(EventArgs)

コントロールのコンテナーの FontChanged プロパティ値が変更された場合に、Font イベントを発生させます。

(継承元 Control)
OnParentForeColorChanged(EventArgs)

コントロールのコンテナーの ForeColorChanged プロパティ値が変更された場合に、ForeColor イベントを発生させます。

(継承元 Control)
OnParentRightToLeftChanged(EventArgs)

コントロールのコンテナーの RightToLeftChanged プロパティ値が変更された場合に、RightToLeft イベントを発生させます。

(継承元 Control)
OnParentVisibleChanged(EventArgs)

コントロールのコンテナーの VisibleChanged プロパティ値が変更された場合に、Visible イベントを発生させます。

(継承元 Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

PreviewKeyDown イベントを発生させます。

(継承元 Control)
OnPrint(PaintEventArgs)

Paint イベントを発生させます。

(継承元 Control)
OnQueryContinueDrag(QueryContinueDragEventArgs)

QueryContinueDrag イベントを発生させます。

(継承元 Control)
OnRegionChanged(EventArgs)

RegionChanged イベントを発生させます。

(継承元 Control)
OnResize(EventArgs)

Resize イベントを発生させます。

(継承元 ListBox)
OnRightToLeftChanged(EventArgs)

RightToLeftChanged イベントを発生させます。

(継承元 Control)
OnSelectedIndexChanged(EventArgs)

SelectedIndexChanged イベントを発生させます。

OnSelectedValueChanged(EventArgs)

SelectedValueChanged イベントを発生させます。

(継承元 ListBox)
OnSizeChanged(EventArgs)

SizeChanged イベントを発生させます。

(継承元 Control)
OnStyleChanged(EventArgs)

StyleChanged イベントを発生させます。

(継承元 Control)
OnSystemColorsChanged(EventArgs)

SystemColorsChanged イベントを発生させます。

(継承元 Control)
OnTabIndexChanged(EventArgs)

TabIndexChanged イベントを発生させます。

(継承元 Control)
OnTabStopChanged(EventArgs)

TabStopChanged イベントを発生させます。

(継承元 Control)
OnTextChanged(EventArgs)

TextChanged イベントを発生させます。

(継承元 Control)
OnValidated(EventArgs)

Validated イベントを発生させます。

(継承元 Control)
OnValidating(CancelEventArgs)

Validating イベントを発生させます。

(継承元 Control)
OnValueMemberChanged(EventArgs)

ValueMemberChanged イベントを発生させます。

(継承元 ListControl)
OnVisibleChanged(EventArgs)

VisibleChanged イベントを発生させます。

(継承元 Control)
PerformLayout()

コントロールがレイアウト ロジックをすべての子コントロールに適用するように強制します。

(継承元 Control)
PerformLayout(Control, String)

コントロールがレイアウト ロジックをすべての子コントロールに適用するように強制します。

(継承元 Control)
PointToClient(Point)

指定した画面上のポイントを計算してクライアント座標を算出します。

(継承元 Control)
PointToScreen(Point)

指定したクライアント ポイントを計算して画面座標を算出します。

(継承元 Control)
PreProcessControlMessage(Message)

キーボード メッセージまたは入力メッセージがディスパッチされる前に、メッセージ ループ内の入力メッセージを前処理します。

(継承元 Control)
PreProcessMessage(Message)

キーボード メッセージまたは入力メッセージがディスパッチされる前に、メッセージ ループ内の入力メッセージを前処理します。

(継承元 Control)
ProcessCmdKey(Message, Keys)

コマンド キーを処理します。

(継承元 Control)
ProcessDialogChar(Char)

ダイアログ文字を処理します。

(継承元 Control)
ProcessDialogKey(Keys)

ダイアログ キーを処理します。

(継承元 Control)
ProcessKeyEventArgs(Message)

キー メッセージを処理し、適切なコントロール イベントを生成します。

(継承元 Control)
ProcessKeyMessage(Message)

キーボード メッセージを処理します。

(継承元 Control)
ProcessKeyPreview(Message)

キーボード メッセージをプレビューします。

(継承元 Control)
ProcessMnemonic(Char)

ニーモニック文字を処理します。

(継承元 Control)
RaiseDragEvent(Object, DragEventArgs)

適切なドラッグ イベントを発生させます。

(継承元 Control)
RaiseKeyEvent(Object, KeyEventArgs)

適切なキー イベントを発生させます。

(継承元 Control)
RaiseMouseEvent(Object, MouseEventArgs)

適切なマウス イベントを発生させます。

(継承元 Control)
RaisePaintEvent(Object, PaintEventArgs)

適切な描画イベントを発生させます。

(継承元 Control)
RecreateHandle()

強制的にコントロールのハンドルを再作成します。

(継承元 Control)
RectangleToClient(Rectangle)

指定した画面上の四角形のサイズと位置をクライアント座標で算出します。

(継承元 Control)
RectangleToScreen(Rectangle)

指定したクライアント領域の四角形のサイズと位置を画面座標で算出します。

(継承元 Control)
Refresh()

強制的に、コントロールがクライアント領域を無効化し、直後にそのコントロール自体とその子コントロールを再描画するようにします。

(継承元 ListBox)
RefreshItem(Int32)

指定したインデックスにある項目を更新します。

(継承元 ListBox)
RefreshItems()

すべての CheckedListBox 項目を解析し直し、これらの項目の最新のテキスト文字列を取得します。

RefreshItems()

ListBox のすべての項目を更新し、それらの項目の新しい文字列を取得します。

(継承元 ListBox)
RescaleConstantsForDpi(Int32, Int32)

DPI の変更が発生したときに、コントロールの再スケーリングの定数を提供します。

(継承元 ListBox)
ResetBackColor()

BackColor プロパティを既定値にリセットします。

(継承元 ListBox)
ResetBindings()

BindingSource にバインドされたコントロールに対し、リスト内のすべての項目を再度読み込んで表示値を更新するよう通知します。

(継承元 Control)
ResetCursor()

Cursor プロパティを既定値にリセットします。

(継承元 Control)
ResetFont()

Font プロパティを既定値にリセットします。

(継承元 Control)
ResetForeColor()

ForeColor プロパティを既定値にリセットします。

(継承元 ListBox)
ResetImeMode()

ImeMode プロパティを既定値にリセットします。

(継承元 Control)
ResetMouseEventArgs()

MouseLeave イベントを処理するためのコントロールをリセットします。

(継承元 Control)
ResetRightToLeft()

RightToLeft プロパティを既定値にリセットします。

(継承元 Control)
ResetText()

Text プロパティを既定値 (Empty) にリセットします。

(継承元 Control)
ResumeLayout()

通常のレイアウト ロジックを再開します。

(継承元 Control)
ResumeLayout(Boolean)

通常のレイアウト ロジックを再開します。オプションで、保留中のレイアウト要求のレイアウトを強制的に即時実行します。

(継承元 Control)
RtlTranslateAlignment(ContentAlignment)

指定した ContentAlignment を適切な ContentAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
RtlTranslateAlignment(HorizontalAlignment)

指定した HorizontalAlignment を適切な HorizontalAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
RtlTranslateAlignment(LeftRightAlignment)

指定した LeftRightAlignment を適切な LeftRightAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
RtlTranslateContent(ContentAlignment)

指定した ContentAlignment を適切な ContentAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
RtlTranslateHorizontal(HorizontalAlignment)

指定した HorizontalAlignment を適切な HorizontalAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
RtlTranslateLeftRight(LeftRightAlignment)

指定した LeftRightAlignment を適切な LeftRightAlignment に変換し、テキストを右から左に表示できるようにします。

(継承元 Control)
Scale(Single)
古い.
古い.

コントロールおよび子コントロールのスケールを設定します。

(継承元 Control)
Scale(Single, Single)
古い.
古い.

コントロール全体および子コントロールのスケールを設定します。

(継承元 Control)
Scale(SizeF)

指定されたスケール ファクターによってコントロールおよびすべての子コントロールのスケールを設定します。

(継承元 Control)
ScaleBitmapLogicalToDevice(Bitmap)

DPI の変更が発生したときに、同等のデバイス単位値に論理ビットマップ値のスケールを設定します。

(継承元 Control)
ScaleControl(SizeF, BoundsSpecified)

コントロールの位置、サイズ、埋め込み、およびマージンのスケールを設定します。

(継承元 ListBox)
ScaleCore(Single, Single)

このクラスでは、このメソッドは無効です。

(継承元 Control)
Select()

コントロールをアクティブにします。

(継承元 Control)
Select(Boolean, Boolean)

子コントロールをアクティブにします。 オプションとして、タブ オーダーでコントロールを選択するときの方向を指定します。

(継承元 Control)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

次のコントロールをアクティブにします。

(継承元 Control)
SendToBack()

コントロールを z オーダーの背面に移動します。

(継承元 Control)
SetAutoSizeMode(AutoSizeMode)

AutoSize プロパティが有効なときのコントロールの動作を示す値を設定します。

(継承元 Control)
SetBounds(Int32, Int32, Int32, Int32)

コントロールの範囲を指定した位置とサイズに設定します。

(継承元 Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

コントロールの指定した範囲を指定した位置とサイズに設定します。

(継承元 Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

ListBox コントロールの指定した境界を設定します。

(継承元 ListBox)
SetClientSizeCore(Int32, Int32)

コントロールのクライアント領域のサイズを設定します。

(継承元 Control)
SetItemChecked(Int32, Boolean)

指定したインデックスの位置にある項目の CheckStateChecked に設定します。

SetItemCheckState(Int32, CheckState)

指定したインデックスの位置にある項目のチェックの状態を設定します。

SetItemCore(Int32, Object)

派生クラスで、指定したインデックスを使用してオブジェクトを設定します。

(継承元 ListBox)
SetItemsCore(IList)

ListBox の内容を消去し、指定した項目をコントロールに追加します。

(継承元 ListBox)
SetSelected(Int32, Boolean)

ListBox 内の指定された項目を選択または選択解除します。

(継承元 ListBox)
SetStyle(ControlStyles, Boolean)

指定した ControlStyles フラグを true または false に設定します。

(継承元 Control)
SetTopLevel(Boolean)

コントロールをトップレベル コントロールとして設定します。

(継承元 Control)
SetVisibleCore(Boolean)

コントロールを指定した表示状態に設定します。

(継承元 Control)
Show()

コントロールをユーザーに対して表示します。

(継承元 Control)
SizeFromClientSize(Size)

クライアント領域の高さおよび幅からコントロール全体のサイズを決定します。

(継承元 Control)
Sort()

ListBox 内の項目を並べ替えます。

(継承元 ListBox)
SuspendLayout()

コントロールのレイアウト ロジックを一時的に中断します。

(継承元 Control)
ToString()

ListBox の文字列表記を返します。

(継承元 ListBox)
Update()

コントロールによって、クライアント領域内の無効化された領域が再描画されます。

(継承元 Control)
UpdateBounds()

コントロールの範囲を現在のサイズと位置で更新します。

(継承元 Control)
UpdateBounds(Int32, Int32, Int32, Int32)

コントロールの範囲を指定したサイズと位置で更新します。

(継承元 Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

コントロールの範囲を指定したサイズ、位置、およびクライアント サイズで更新します。

(継承元 Control)
UpdateStyles()

割り当て済みのスタイルを強制的にコントロールに再適用します。

(継承元 Control)
UpdateZOrder()

コントロールを親の z オーダーで更新します。

(継承元 Control)
WmReflectCommand(Message)

CheckedListBox コントロールがトップレベル ウィンドウから受け取るコマンド メッセージを処理します。

WndProc(Message)

Windows メッセージを処理します。

イベント

AutoSizeChanged

このクラスでは、このイベントは使用されません。

(継承元 Control)
BackColorChanged

BackColor プロパティの値が変化したときに発生します。

(継承元 Control)
BackgroundImageChanged

ラベルの BackgroundImage プロパティが変更されたときに発生します。

(継承元 ListBox)
BackgroundImageLayoutChanged

BackgroundImageLayout プロパティが変更されたときに発生します。

(継承元 ListBox)
BindingContextChanged

BindingContext プロパティの値が変化したときに発生します。

(継承元 Control)
CausesValidationChanged

CausesValidation プロパティの値が変化したときに発生します。

(継承元 Control)
ChangeUICues

フォーカスまたはキーボードのユーザー インターフェイス (UI) キューが変更されるときに発生します。

(継承元 Control)
Click

ユーザーが CheckedListBox コントロールをクリックすると発生します。

ClientSizeChanged

ClientSize プロパティの値が変化したときに発生します。

(継承元 Control)
ContextMenuChanged

ContextMenu プロパティの値が変化したときに発生します。

(継承元 Control)
ContextMenuStripChanged

ContextMenuStrip プロパティの値が変化したときに発生します。

(継承元 Control)
ControlAdded

新しいコントロールが Control.ControlCollection に追加されたときに発生します。

(継承元 Control)
ControlRemoved

Control.ControlCollection からコントロールが削除されたときに発生します。

(継承元 Control)
CursorChanged

Cursor プロパティの値が変化したときに発生します。

(継承元 Control)
DataContextChanged

DataContext プロパティの値が変化したときに発生します。

(継承元 Control)
DataSourceChanged

DataSource プロパティが変更されたときに発生します。

DisplayMemberChanged

DisplayMember プロパティが変更されたときに発生します。

Disposed

Dispose() メソッドの呼び出しによってコンポーネントが破棄されるときに発生します。

(継承元 Component)
DockChanged

Dock プロパティの値が変化したときに発生します。

(継承元 Control)
DoubleClick

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

(継承元 Control)
DpiChangedAfterParent

親コントロールまたはフォームの DPI が変更された後に、コントロールの DPI 設定がプログラムで変更されたときに発生します。

(継承元 Control)
DpiChangedBeforeParent

親コントロールまたはフォームの DPI 変更イベントが発生する前に、コントロールの DPI 設定がプログラムで変更されたときに発生します。

(継承元 Control)
DragDrop

ドラッグ アンド ドロップ操作が完了したときに発生します。

(継承元 Control)
DragEnter

オブジェクトがコントロールの境界内にドラッグされると発生します。

(継承元 Control)
DragLeave

オブジェクトがコントロールの境界外にドラッグされたときに発生します。

(継承元 Control)
DragOver

オブジェクトがコントロールの境界を越えてドラッグされると発生します。

(継承元 Control)
DrawItem

オーナー描画 CheckedListBox のビジュアルな部分を変更すると発生します。 このクラスでは、このイベントは使用されません。

EnabledChanged

Enabled プロパティ値が変更されたときに発生します。

(継承元 Control)
Enter

コントロールが入力されると発生します。

(継承元 Control)
FontChanged

Font プロパティの値が変化すると発生します。

(継承元 Control)
ForeColorChanged

ForeColor プロパティの値が変化すると発生します。

(継承元 Control)
Format

コントロールがデータ値にバインドされると発生します。

(継承元 ListControl)
FormatInfoChanged

FormatInfo プロパティの値が変化したときに発生します。

(継承元 ListControl)
FormatStringChanged

FormatString プロパティの値が変更された場合に発生します。

(継承元 ListControl)
FormattingEnabledChanged

FormattingEnabled プロパティの値が変化したときに発生します。

(継承元 ListControl)
GiveFeedback

ドラッグ操作中に発生します。

(継承元 Control)
GotFocus

コントロールがフォーカスを受け取ると発生します。

(継承元 Control)
HandleCreated

コントロールに対してハンドルが作成されると発生します。

(継承元 Control)
HandleDestroyed

コントロールのハンドルが破棄されているときに発生します。

(継承元 Control)
HelpRequested

ユーザーがコントロールのヘルプを要求すると発生します。

(継承元 Control)
ImeModeChanged

ImeMode プロパティが変更された場合に発生します。

(継承元 Control)
Invalidated

コントロールの表示に再描画が必要なときに発生します。

(継承元 Control)
ItemCheck

項目のチェック状態が変更されると発生します。

KeyDown

コントロールにフォーカスがあるときにキーが押されると発生します。

(継承元 Control)
KeyPress

コントロールにフォーカスがあるときに、文字、 スペース、または Backspace キーが押された場合に発生します。

(継承元 Control)
KeyUp

コントロールにフォーカスがあるときにキーが離されると発生します。

(継承元 Control)
Layout

コントロールの子コントロールの位置を変更する必要があるときに発生します。

(継承元 Control)
Leave

入力フォーカスがコントロールを離れると発生します。

(継承元 Control)
LocationChanged

Location プロパティ値が変更されたときに発生します。

(継承元 Control)
LostFocus

コントロールがフォーカスを失ったときに発生します。

(継承元 Control)
MarginChanged

コントロールのマージンが変更されたときに発生します。

(継承元 Control)
MeasureItem

オーナー描画 ListBox が作成され、リスト項目のサイズが決定されると発生します。 このクラスでは、このイベントは使用されません。

MouseCaptureChanged

コントロールがマウスのキャプチャを失うと発生します。

(継承元 Control)
MouseClick

ユーザーがマウスで CheckedListBox コントロールをクリックすると発生します。

MouseClick

ユーザーがマウスで ListBox コントロールをクリックすると発生します。

(継承元 ListBox)
MouseDoubleClick

マウスでコントロールをダブルクリックしたときに発生します。

(継承元 Control)
MouseDown

マウス ポインターがコントロール上にあり、マウス ボタンがクリックされると発生します。

(継承元 Control)
MouseEnter

マウス ポインターによってコントロールが入力されると発生します。

(継承元 Control)
MouseHover

マウス ポインターをコントロールの上に重ねると発生します。

(継承元 Control)
MouseLeave

マウス ポインターがコントロールを離れると発生します。

(継承元 Control)
MouseMove

マウス ポインターがコントロール上を移動すると発生します。

(継承元 Control)
MouseUp

マウス ポインターがコントロール上にある状態でマウス ボタンが離されると発生します。

(継承元 Control)
MouseWheel

コントロールにフォーカスがある間に、マウスのホイールを移動したときに発生します。

(継承元 Control)
Move

コントロールが移動されると発生します。

(継承元 Control)
PaddingChanged

Padding プロパティの値が変化したときに発生します。

(継承元 ListBox)
Paint

ListBox コントロールが描画されると発生します。

(継承元 ListBox)
ParentChanged

Parent プロパティの値が変化すると発生します。

(継承元 Control)
PreviewKeyDown

このコントロールにフォーカスがあるときにキーが押された場合、KeyDown イベントの前に発生します。

(継承元 Control)
QueryAccessibilityHelp

AccessibleObject がユーザー補助アプリケーションにヘルプを提供したときに発生します。

(継承元 Control)
QueryContinueDrag

ドラッグ アンド ドロップ操作中に発生し、ドラッグ ソースがドラッグ アンド ドロップ操作をキャンセルする必要があるかどうかを決定できるようにします。

(継承元 Control)
RegionChanged

Region プロパティの値が変化したときに発生します。

(継承元 Control)
Resize

コントロールのサイズが変更されると発生します。

(継承元 Control)
RightToLeftChanged

RightToLeft プロパティの値が変化すると発生します。

(継承元 Control)
SelectedIndexChanged

SelectedIndex プロパティまたは SelectedIndices コレクションが変更されたときに発生します。

(継承元 ListBox)
SelectedValueChanged

SelectedValue プロパティが変更されたときに発生します。

(継承元 ListControl)
SizeChanged

Size プロパティの値が変化すると発生します。

(継承元 Control)
StyleChanged

コントロール スタイルが変更されると発生します。

(継承元 Control)
SystemColorsChanged

システム カラーが変更されると発生します。

(継承元 Control)
TabIndexChanged

TabIndex プロパティの値が変化すると発生します。

(継承元 Control)
TabStopChanged

TabStop プロパティの値が変化すると発生します。

(継承元 Control)
TextChanged

Text プロパティが変更されると発生します。

(継承元 ListBox)
Validated

コントロールの検証が終了すると発生します。

(継承元 Control)
Validating

コントロールが検証しているときに発生します。

(継承元 Control)
ValueMemberChanged

ValueMember プロパティが変更されたときに発生します。

VisibleChanged

Visible プロパティの値が変化すると発生します。

(継承元 Control)

明示的なインターフェイスの実装

IDropTarget.OnDragDrop(DragEventArgs)

DragDrop イベントを発生させます。

(継承元 Control)
IDropTarget.OnDragEnter(DragEventArgs)

DragEnter イベントを発生させます。

(継承元 Control)
IDropTarget.OnDragLeave(EventArgs)

DragLeave イベントを発生させます。

(継承元 Control)
IDropTarget.OnDragOver(DragEventArgs)

DragOver イベントを発生させます。

(継承元 Control)

適用対象

こちらもご覧ください