ComboBox クラス

定義

Windows コンボ ボックス コントロールを表します。

public ref class ComboBox : System::Windows::Forms::ListControl
public class ComboBox : System.Windows.Forms.ListControl
[System.ComponentModel.DefaultBindingProperty("Text")]
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class ComboBox : System.Windows.Forms.ListControl
[System.ComponentModel.DefaultBindingProperty("Text")]
public class ComboBox : System.Windows.Forms.ListControl
type ComboBox = class
    inherit ListControl
[<System.ComponentModel.DefaultBindingProperty("Text")>]
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type ComboBox = class
    inherit ListControl
[<System.ComponentModel.DefaultBindingProperty("Text")>]
type ComboBox = class
    inherit ListControl
Public Class ComboBox
Inherits ListControl
継承
派生
属性

次のコード例は、 メソッドを使用して 項目を にComboBox追加する方法、内のComboBox項目を検索するメソッド、FindStringおよび EndUpdateBeginUpdate メソッドを使用Addして多数の項目を に効率的に追加する方法をComboBox示す完全なアプリケーションです。 表示されるテキストとは異なる値を格納する機能は、 から ListControl継承されます。 この機能の使用方法の例については、 クラスを ListControl 参照してください。

この例を実行するには、 System.Drawing 名前空間と System.Windows.Forms 名前空間への参照を追加する必要があります。

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

using namespace System;
using namespace System::Windows::Forms;

namespace Win32Form1Namespace
{
   public ref class Win32Form1: public System::Windows::Forms::Form
   {
   private:
      System::Windows::Forms::Button^ addButton;
      System::Windows::Forms::TextBox^ textBox2;
      System::Windows::Forms::Button^ addGrandButton;
      System::Windows::Forms::ComboBox^ comboBox1;
      System::Windows::Forms::Button^ showSelectedButton;
      System::Windows::Forms::TextBox^ textBox1;
      System::Windows::Forms::Button^ findButton;
      System::Windows::Forms::Label ^ label1;

   public:
      Win32Form1()
      {
         this->InitializeComponent();
      }

   private:
      void InitializeComponent()
      {
         this->addButton = gcnew System::Windows::Forms::Button;
         this->textBox2 = gcnew System::Windows::Forms::TextBox;
         this->addGrandButton = gcnew System::Windows::Forms::Button;
         this->comboBox1 = gcnew System::Windows::Forms::ComboBox;
         this->showSelectedButton = gcnew System::Windows::Forms::Button;
         this->textBox1 = gcnew System::Windows::Forms::TextBox;
         this->findButton = gcnew System::Windows::Forms::Button;
         this->label1 = gcnew System::Windows::Forms::Label;
         this->addButton->Location = System::Drawing::Point( 248, 32 );
         this->addButton->Size = System::Drawing::Size( 40, 24 );
         this->addButton->TabIndex = 1;
         this->addButton->Text = "Add";
         this->addButton->Click += gcnew System::EventHandler(
            this, &Win32Form1::addButton_Click );
         this->textBox2->Location = System::Drawing::Point( 8, 64 );
         this->textBox2->Size = System::Drawing::Size( 232, 20 );
         this->textBox2->TabIndex = 6;
         this->textBox2->Text = "";
         this->addGrandButton->Location = System::Drawing::Point( 8, 96 );
         this->addGrandButton->Size = System::Drawing::Size( 280, 23 );
         this->addGrandButton->TabIndex = 2;
         this->addGrandButton->Text = "Add 1, 000 Items";
         this->addGrandButton->Click += gcnew System::EventHandler(
            this, &Win32Form1::addGrandButton_Click );
         this->comboBox1->Anchor = (System::Windows::Forms::AnchorStyles)(
            (System::Windows::Forms::AnchorStyles::Bottom | System::Windows::Forms::AnchorStyles::Left) |
             System::Windows::Forms::AnchorStyles::Right);
         this->comboBox1->DropDownWidth = 280;
         array<Object^>^ objectArray = {"Item 1",
            "Item 2",
            "Item 3",
            "Item 4",
            "Item 5"};
         this->comboBox1->Items->AddRange( objectArray );
         this->comboBox1->Location = System::Drawing::Point( 8, 248 );
         this->comboBox1->Size = System::Drawing::Size( 280, 21 );
         this->comboBox1->TabIndex = 7;
         this->showSelectedButton->Location = System::Drawing::Point( 8, 128 );
         this->showSelectedButton->Size = System::Drawing::Size( 280, 24 );
         this->showSelectedButton->TabIndex = 4;
         this->showSelectedButton->Text = "What Item is Selected?";
         this->showSelectedButton->Click += gcnew System::EventHandler( 
            this, &Win32Form1::showSelectedButton_Click );
         this->textBox1->Location = System::Drawing::Point( 8, 32 );
         this->textBox1->Size = System::Drawing::Size( 232, 20 );
         this->textBox1->TabIndex = 5;
         this->textBox1->Text = "";
         this->findButton->Location = System::Drawing::Point( 248, 64 );
         this->findButton->Size = System::Drawing::Size( 40, 24 );
         this->findButton->TabIndex = 3;
         this->findButton->Text = "Find";
         this->findButton->Click += gcnew System::EventHandler( 
            this, &Win32Form1::findButton_Click );
         this->label1->Location = System::Drawing::Point( 8, 224 );
         this->label1->Size = System::Drawing::Size( 144, 23 );
         this->label1->TabIndex = 0;
         this->label1->Text = "Test ComboBox";
         this->ClientSize = System::Drawing::Size( 292, 273 );
         array<System::Windows::Forms::Control^>^ controlsArray = {this->comboBox1,
            this->textBox2,
            this->textBox1,
            this->showSelectedButton,
            this->findButton,
            this->addGrandButton,
            this->addButton,
            this->label1};
         this->Controls->AddRange( controlsArray );
         this->Text = "ComboBox Sample";
      }

      void addButton_Click( Object^ sender, System::EventArgs^ e )
      {
         comboBox1->Items->Add( textBox1->Text );
      }

      void addGrandButton_Click( Object^ sender, System::EventArgs^ e )
      {
         comboBox1->BeginUpdate();
         for ( int i = 0; i < 1000; i++ )
         {
            comboBox1->Items->Add( "Item 1 " + i.ToString() );

         }
         comboBox1->EndUpdate();
      }

      void findButton_Click( Object^ sender, System::EventArgs^ e )
      {
         int index = comboBox1->FindString( textBox2->Text );
         comboBox1->SelectedIndex = index;
      }

      void showSelectedButton_Click( Object^ sender, System::EventArgs^ e )
      {
         int selectedIndex = comboBox1->SelectedIndex;
         Object^ selectedItem = comboBox1->SelectedItem;
         MessageBox::Show( "Selected Item Text: " + selectedItem->ToString() + "\n" +
            "Index: " + selectedIndex.ToString() );
      }
   };
}


[System::STAThreadAttribute]
int main()
{
   System::Windows::Forms::Application::Run( gcnew Win32Form1Namespace::Win32Form1 );
}
using System;
using System.Windows.Forms;

namespace Win32Form1Namespace {

    public class Win32Form1 : System.Windows.Forms.Form {
        private System.Windows.Forms.Button addButton;
        private System.Windows.Forms.TextBox textBox2;
        private System.Windows.Forms.Button addGrandButton;
        private System.Windows.Forms.ComboBox comboBox1;
        private System.Windows.Forms.Button showSelectedButton;
        private System.Windows.Forms.TextBox textBox1;
        private System.Windows.Forms.Button findButton;
        private System.Windows.Forms.Label label1;
        
        public Win32Form1() {
            this.InitializeComponent();
        }
        
        [System.STAThreadAttribute()]
        public static void Main() {
            System.Windows.Forms.Application.Run(new Win32Form1());
        }
        
        private void InitializeComponent() {
            this.addButton = new System.Windows.Forms.Button();
            this.textBox2 = new System.Windows.Forms.TextBox();
            this.addGrandButton = new System.Windows.Forms.Button();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.showSelectedButton = new System.Windows.Forms.Button();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this.findButton = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.addButton.Location = new System.Drawing.Point(248, 32);
            this.addButton.Size = new System.Drawing.Size(40, 24);
            this.addButton.TabIndex = 1;
            this.addButton.Text = "Add";
            this.addButton.Click += new System.EventHandler(this.addButton_Click);
            this.textBox2.Location = new System.Drawing.Point(8, 64);
            this.textBox2.Size = new System.Drawing.Size(232, 20);
            this.textBox2.TabIndex = 6;
            this.textBox2.Text = "";
            this.addGrandButton.Location = new System.Drawing.Point(8, 96);
            this.addGrandButton.Size = new System.Drawing.Size(280, 23);
            this.addGrandButton.TabIndex = 2;
            this.addGrandButton.Text = "Add 1,000 Items";
            this.addGrandButton.Click += new System.EventHandler(this.addGrandButton_Click);
            this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
                        | System.Windows.Forms.AnchorStyles.Right);
            this.comboBox1.DropDownWidth = 280;
            this.comboBox1.Items.AddRange(new object[] {"Item 1",
                        "Item 2",
                        "Item 3",
                        "Item 4",
                        "Item 5"});
            this.comboBox1.Location = new System.Drawing.Point(8, 248);
            this.comboBox1.Size = new System.Drawing.Size(280, 21);
            this.comboBox1.TabIndex = 7;
            this.showSelectedButton.Location = new System.Drawing.Point(8, 128);
            this.showSelectedButton.Size = new System.Drawing.Size(280, 24);
            this.showSelectedButton.TabIndex = 4;
            this.showSelectedButton.Text = "What Item is Selected?";
            this.showSelectedButton.Click += new System.EventHandler(this.showSelectedButton_Click);
            this.textBox1.Location = new System.Drawing.Point(8, 32);
            this.textBox1.Size = new System.Drawing.Size(232, 20);
            this.textBox1.TabIndex = 5;
            this.textBox1.Text = "";
            this.findButton.Location = new System.Drawing.Point(248, 64);
            this.findButton.Size = new System.Drawing.Size(40, 24);
            this.findButton.TabIndex = 3;
            this.findButton.Text = "Find";
            this.findButton.Click += new System.EventHandler(this.findButton_Click);
            this.label1.Location = new System.Drawing.Point(8, 224);
            this.label1.Size = new System.Drawing.Size(144, 23);
            this.label1.TabIndex = 0;
            this.label1.Text = "Test ComboBox";
            this.ClientSize = new System.Drawing.Size(292, 273);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {this.comboBox1,
                        this.textBox2,
                        this.textBox1,
                        this.showSelectedButton,
                        this.findButton,
                        this.addGrandButton,
                        this.addButton,
                        this.label1});
            this.Text = "ComboBox Sample";
        }
        
        private void addButton_Click(object sender, System.EventArgs e) {
           comboBox1.Items.Add(textBox1.Text);
        }

        private void addGrandButton_Click(object sender, System.EventArgs e) {
            comboBox1.BeginUpdate();
            for (int i = 0; i < 1000; i++) {
                comboBox1.Items.Add("Item 1" + i.ToString());
            }
            comboBox1.EndUpdate();
        }

        private void findButton_Click(object sender, System.EventArgs e) {
            int index = comboBox1.FindString(textBox2.Text);
            comboBox1.SelectedIndex = index;
        }

        private void showSelectedButton_Click(object sender, System.EventArgs e) {
            int selectedIndex = comboBox1.SelectedIndex;
            Object selectedItem = comboBox1.SelectedItem;

            MessageBox.Show("Selected Item Text: " + selectedItem.ToString() + "\n" +
                            "Index: " + selectedIndex.ToString());
        }
    }
}
Imports System.Windows.Forms

Namespace ComboBoxSampleNamespace

    Public Class ComboBoxSample
        Inherits System.Windows.Forms.Form

        Private addButton As System.Windows.Forms.Button
        Private textBox2 As System.Windows.Forms.TextBox
        Private addGrandButton As System.Windows.Forms.Button
        Private comboBox1 As System.Windows.Forms.ComboBox
        Private showSelectedButton As System.Windows.Forms.Button
        Private textBox1 As System.Windows.Forms.TextBox
        Private findButton As System.Windows.Forms.Button
        Private label1 As System.Windows.Forms.Label

        Public Sub New()
            MyBase.New()
            Me.InitializeComponent()
        End Sub

        <System.STAThreadAttribute()> Public Shared Sub Main()
            System.Windows.Forms.Application.Run(New ComboBoxSample())
        End Sub

        Private Sub InitializeComponent()
            Me.addButton = New System.Windows.Forms.Button()
            Me.textBox2 = New System.Windows.Forms.TextBox()
            Me.addGrandButton = New System.Windows.Forms.Button()
            Me.comboBox1 = New System.Windows.Forms.ComboBox()
            Me.showSelectedButton = New System.Windows.Forms.Button()
            Me.textBox1 = New System.Windows.Forms.TextBox()
            Me.findButton = New System.Windows.Forms.Button()
            Me.label1 = New System.Windows.Forms.Label()
            Me.addButton.Location = New System.Drawing.Point(248, 32)
            Me.addButton.Size = New System.Drawing.Size(40, 24)
            Me.addButton.TabIndex = 1
            Me.addButton.Text = "Add"
            AddHandler Me.addButton.Click, AddressOf Me.addButton_Click
            Me.textBox2.Location = New System.Drawing.Point(8, 64)
            Me.textBox2.Size = New System.Drawing.Size(232, 20)
            Me.textBox2.TabIndex = 6
            Me.textBox2.Text = ""
            Me.addGrandButton.Location = New System.Drawing.Point(8, 96)
            Me.addGrandButton.Size = New System.Drawing.Size(280, 23)
            Me.addGrandButton.TabIndex = 2
            Me.addGrandButton.Text = "Add 1,000 Items"
            AddHandler Me.addGrandButton.Click, AddressOf Me.addGrandButton_Click
            Me.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
                        Or System.Windows.Forms.AnchorStyles.Right)
            Me.comboBox1.DropDownWidth = 280
            Me.comboBox1.Items.AddRange(New Object() {"Item 1", "Item 2", "Item 3", "Item 4", "Item 5"})
            Me.comboBox1.Location = New System.Drawing.Point(8, 248)
            Me.comboBox1.Size = New System.Drawing.Size(280, 21)
            Me.comboBox1.TabIndex = 7
            Me.showSelectedButton.Location = New System.Drawing.Point(8, 128)
            Me.showSelectedButton.Size = New System.Drawing.Size(280, 24)
            Me.showSelectedButton.TabIndex = 4
            Me.showSelectedButton.Text = "What Item is Selected?"
            AddHandler Me.showSelectedButton.Click, AddressOf Me.showSelectedButton_Click
            Me.textBox1.Location = New System.Drawing.Point(8, 32)
            Me.textBox1.Size = New System.Drawing.Size(232, 20)
            Me.textBox1.TabIndex = 5
            Me.textBox1.Text = ""
            Me.findButton.Location = New System.Drawing.Point(248, 64)
            Me.findButton.Size = New System.Drawing.Size(40, 24)
            Me.findButton.TabIndex = 3
            Me.findButton.Text = "Find"
            AddHandler Me.findButton.Click, AddressOf Me.findButton_Click
            Me.label1.Location = New System.Drawing.Point(8, 224)
            Me.label1.Size = New System.Drawing.Size(144, 23)
            Me.label1.TabIndex = 0
            Me.label1.Text = "Test ComboBox"
            Me.ClientSize = New System.Drawing.Size(292, 273)
            Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.comboBox1, Me.textBox2, Me.textBox1, Me.showSelectedButton, Me.findButton, Me.addGrandButton, Me.addButton, Me.label1})
            Me.Text = "ComboBox Sample"
        End Sub

        Private Sub addButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
            comboBox1.Items.Add(textBox1.Text)
        End Sub

        Private Sub findButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim index As Integer
            index = comboBox1.FindString(textBox2.Text)
            comboBox1.SelectedIndex = index
        End Sub

        Private Sub addGrandButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
            comboBox1.BeginUpdate()
            Dim I As Integer
            For I = 0 To 1000
                comboBox1.Items.Add("Item 1" + i.ToString())
            Next
            comboBox1.EndUpdate()
        End Sub

        Private Sub showSelectedButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
            Dim selectedIndex As Integer
            selectedIndex = comboBox1.SelectedIndex
            Dim selectedItem As Object
            selectedItem = comboBox1.SelectedItem

            MessageBox.Show("Selected Item Text: " & selectedItem.ToString() & Microsoft.VisualBasic.Constants.vbCrLf & _
                                "Index: " & selectedIndex.ToString())
        End Sub
    End Class
End Namespace

注釈

には ComboBox 、 と組み合わせてテキスト ボックスが ListBox表示されます。これにより、ユーザーはリストから項目を選択したり、新しい値を入力したりできます。

プロパティは DropDownStyle 、リストが常に表示されるかどうか、またはリストがドロップダウンに表示されるかどうかを指定します。 プロパティは DropDownStyle 、テキスト部分を編集できるかどうかを指定します。 使用可能な設定とその効果については、「」を参照してください ComboBoxStyle 。 常にリストを表示し、新しい値の入力を禁止する設定はありません。 新しい値を追加できないリストを表示するには、 コントロールを ListBox 使用します。

実行時にリスト内のオブジェクトを追加または削除するには、 クラスの メソッドをComboBox.ObjectCollection使用します (の プロパティをItemsComboBox使用)。 メソッドを使用して、オブジェクト参照の配列を AddRange 割り当てることができます。 リストには、各オブジェクトの既定の文字列値が表示されます。 メソッドを使用して、個々のオブジェクトを Add 追加できます。 メソッドを使用して項目を削除することも、 Remove メソッドを使用してリスト全体を Clear クリアすることもできます。

には、表示と選択の機能に加えて、 ComboBox に項目を効率的に ComboBox 追加したり、リストの項目内のテキストを検索したりできる機能も用意されています。 BeginUpdateメソッドと EndUpdate メソッドを使用すると、リストにComboBox項目が追加されるたびにコントロールを再描画することなく、多数の項目を に追加できます。 FindStringメソッドと FindStringExact メソッドを使用すると、特定の検索文字列を含むリスト内のアイテムを検索できます。

これらのプロパティを使用すると、リスト内で現在選択されている項目を管理できます。プロパティを Text 使用して、編集フィールドに表示される文字列を指定し、現在の SelectedIndex アイテムを取得または設定するプロパティ、および SelectedItem オブジェクトへの参照を取得または設定するプロパティを指定できます。

注意

ベース Windows フォーム ページに 、ComboBox、または CheckedListBox があるListBox場合に、派生フォームでこれらのコントロールの文字列コレクションを変更する場合、基本フォーム内のこれらのコントロールの文字列コレクションは空である必要があります。 文字列コレクションが空でない場合、別のフォームを派生させると読み取り専用になります。

コンストラクター

ComboBox()

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

プロパティ

AccessibilityObject

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

(継承元 Control)
AccessibleDefaultActionDescription

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

(継承元 Control)
AccessibleDescription

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

(継承元 Control)
AccessibleName

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

(継承元 Control)
AccessibleRole

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

(継承元 Control)
AllowDrop

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

(継承元 Control)
AllowSelection

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

(継承元 ListControl)
Anchor

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

(継承元 Control)
AutoCompleteCustomSource

AutoCompleteSource プロパティが CustomSource に設定されている場合に使用するカスタム StringCollection を取得または設定します。

AutoCompleteMode

ComboBox のオート コンプリートの動作を制御するオプションを取得または設定します。

AutoCompleteSource

オート コンプリートで使用する完全な文字列のソースを指定する値を取得または設定します。

AutoScrollOffset

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

(継承元 Control)
AutoSize

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

(継承元 Control)
BackColor

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

BackgroundImage

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

BackgroundImageLayout

ImageLayout 列挙型で定義される背景画像のレイアウトを取得または設定します。

BackgroundImageLayout

ImageLayout 列挙型で定義される背景画像のレイアウトを取得または設定します。

(継承元 Control)
BindingContext

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

(継承元 Control)
Bottom

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

(継承元 Control)
Bounds

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

(継承元 Control)
CanEnableIme

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

(継承元 Control)
CanFocus

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

(継承元 Control)
CanRaiseEvents

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

(継承元 Control)
CanSelect

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

(継承元 Control)
Capture

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

(継承元 Control)
CausesValidation

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

(継承元 Control)
ClientRectangle

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

(継承元 Control)
ClientSize

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

(継承元 Control)
CompanyName

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

(継承元 Control)
Container

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

(継承元 Component)
ContainsFocus

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

(継承元 Control)
ContextMenu

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

(継承元 Control)
ContextMenuStrip

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

(継承元 Control)
Controls

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

(継承元 Control)
Created

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

(継承元 Control)
CreateParams

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

Cursor

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

(継承元 Control)
DataBindings

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

(継承元 Control)
DataContext

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

(継承元 Control)
DataManager

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

(継承元 ListControl)
DataSource

この ComboBox のデータ ソースを取得または設定します。

DataSource

この ListControl のデータ ソースを取得または設定します。

(継承元 ListControl)
DefaultCursor

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

(継承元 Control)
DefaultImeMode

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

(継承元 Control)
DefaultMargin

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

(継承元 Control)
DefaultMaximumSize

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

(継承元 Control)
DefaultMinimumSize

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

(継承元 Control)
DefaultPadding

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

(継承元 Control)
DefaultSize

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

DesignMode

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

(継承元 Component)
DeviceDpi

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

(継承元 Control)
DisplayMember

この ListControl に表示するプロパティを取得または設定します。

(継承元 ListControl)
DisplayRectangle

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

(継承元 Control)
Disposing

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

(継承元 Control)
Dock

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

(継承元 Control)
DoubleBuffered

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

(継承元 Control)
DrawMode

リストの要素の描画を処理するのは、コードとオペレーティング システムのどちらであるかを示す値を取得または設定します。

DropDownHeight

ComboBox のドロップダウン部分の高さをピクセル単位で取得または設定します。

DropDownStyle

コンボ ボックスのスタイルを指定する値を取得または設定します。

DropDownWidth

コンボ ボックスのドロップダウン部分の幅を取得または設定します。

DroppedDown

コンボ ボックスでドロップダウン部分が表示されているかどうかを示す値を取得または設定します。

Enabled

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

(継承元 Control)
Events

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

(継承元 Component)
FlatStyle

ComboBox の外観を取得または設定します。

Focused

ComboBox にフォーカスが設定されているかどうかを示す値を取得します。

Font

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

(継承元 Control)
FontHeight

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

(継承元 Control)
ForeColor

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

FormatInfo

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

(継承元 ListControl)
FormatString

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

(継承元 ListControl)
FormattingEnabled

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

(継承元 ListControl)
Handle

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

(継承元 Control)
HasChildren

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

(継承元 Control)
Height

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

(継承元 Control)
ImeMode

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

(継承元 Control)
ImeModeBase

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

(継承元 Control)
IntegralHeight

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

InvokeRequired

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

(継承元 Control)
IsAccessible

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

(継承元 Control)
IsAncestorSiteInDesignMode

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

(継承元 Control)
IsDisposed

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

(継承元 Control)
IsHandleCreated

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

(継承元 Control)
IsMirrored

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

(継承元 Control)
ItemHeight

コンボ ボックス内の項目の高さを取得または設定します。

Items

この ComboBox に含まれている項目のコレクションを表すオブジェクトを取得します。

LayoutEngine

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

(継承元 Control)
Left

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

(継承元 Control)
Location

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

(継承元 Control)
Margin

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

(継承元 Control)
MaxDropDownItems

ComboBox のドロップダウン部分に表示される項目の最大数を取得または設定します。

MaximumSize

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

MaximumSize

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

(継承元 Control)
MaxLength

ユーザーが ComboBox に入力できる文字数を取得または設定します。

MinimumSize

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

MinimumSize

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

(継承元 Control)
Name

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

(継承元 Control)
Padding

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

Padding

コントロールの埋め込みを取得または設定します。

(継承元 Control)
Parent

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

(継承元 Control)
PreferredHeight

ComboBox の適切な高さを取得します。

PreferredSize

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

(継承元 Control)
ProductName

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

(継承元 Control)
ProductVersion

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

(継承元 Control)
RecreatingHandle

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

(継承元 Control)
Region

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

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

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

(継承元 Control)
ResizeRedraw

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

(継承元 Control)
Right

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

(継承元 Control)
RightToLeft

コントロールの要素が、右から左へ表示されるフォントを使用するロケールをサポートするように配置されているかどうかを示す値を取得または設定します。

(継承元 Control)
ScaleChildren

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

(継承元 Control)
SelectedIndex

現在選択されている項目を指定しているインデックスを取得または設定します。

SelectedItem

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

SelectedText

ComboBox のうち編集できる部分の中で選択されているテキストを取得または設定します。

SelectedValue

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

(継承元 ListControl)
SelectionLength

コンボ ボックスの編集できる部分で選択されている文字数を取得または設定します。

SelectionStart

コンボ ボックスで選択されているテキストの開始インデックスを取得または設定します。

ShowFocusCues

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

(継承元 Control)
ShowKeyboardCues

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

(継承元 Control)
Site

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

(継承元 Control)
Size

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

(継承元 Control)
Sorted

コンボ ボックス内の項目が並べ替えられたかどうかを示す値を取得または設定します。

TabIndex

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

(継承元 Control)
TabStop

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

(継承元 Control)
Tag

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

(継承元 Control)
Text

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

Top

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

(継承元 Control)
TopLevelControl

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

(継承元 Control)
UseWaitCursor

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

(継承元 Control)
ValueMember

ListControl 内の項目の実際の値として使用するプロパティのパスを取得または設定します。

(継承元 ListControl)
Visible

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

(継承元 Control)
Width

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

(継承元 Control)
WindowTarget

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

(継承元 Control)

メソッド

AccessibilityNotifyClients(AccessibleEvents, Int32)

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

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

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

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

指定した項目をコンボ ボックスに追加します。

BeginInvoke(Action)

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

(継承元 Control)
BeginInvoke(Delegate)

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

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

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

(継承元 Control)
BeginUpdate()

アイテムを一度に ComboBox に追加するときにパフォーマンスを維持します。

BringToFront()

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

(継承元 Control)
Contains(Control)

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

(継承元 Control)
CreateAccessibilityInstance()

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

CreateAccessibilityInstance()

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

(継承元 Control)
CreateControl()

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

(継承元 Control)
CreateControlsInstance()

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

(継承元 Control)
CreateGraphics()

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

(継承元 Control)
CreateHandle()

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

CreateHandle()

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

(継承元 Control)
CreateObjRef(Type)

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

(継承元 MarshalByRefObject)
DefWndProc(Message)

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

(継承元 Control)
DestroyHandle()

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

(継承元 Control)
Dispose()

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

(継承元 Component)
Dispose(Boolean)

ComboBox によって使用されているアンマネージド リソースを解放し、オプションでマネージド リソースも解放します。

DoDragDrop(Object, DragDropEffects)

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

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

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

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

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

(継承元 Control)
EndInvoke(IAsyncResult)

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

(継承元 Control)
EndUpdate()

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

Equals(Object)

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

(継承元 Object)
FilterItemOnProperty(Object)

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

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

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

(継承元 ListControl)
FindForm()

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

(継承元 Control)
FindString(String)

ComboBox のうち、指定した文字列で始まる最初の項目のインデックスを返します。

FindString(String, Int32)

ComboBox 内の指定されたインデックスより後ろの、指定された文字列を含む最初の項目のインデックスを返します。 検索では、大文字と小文字が区別されません。

FindStringExact(String)

コンボ ボックス内で、指定した文字列と一致する最初の項目を検索します。

FindStringExact(String, Int32)

指定したインデックスの後に出現する、指定した文字列と一致する最初の項目を検索します。

Focus()

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

(継承元 Control)
GetAccessibilityObjectById(Int32)

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

(継承元 Control)
GetAutoSizeMode()

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

(継承元 Control)
GetChildAtPoint(Point)

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

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

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

(継承元 Control)
GetContainerControl()

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

(継承元 Control)
GetHashCode()

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

(継承元 Object)
GetItemHeight(Int32)

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

GetItemText(Object)

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

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

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

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

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

(継承元 Control)
GetPreferredSize(Size)

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

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

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

(継承元 Control)
GetService(Type)

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

(継承元 Component)
GetStyle(ControlStyles)

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

(継承元 Control)
GetTopLevel()

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

(継承元 Control)
GetType()

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

(継承元 Object)
Hide()

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

(継承元 Control)
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)

指定されているキーが、通常の入力キーであるか、またはプリプロセスを必要とする特殊なキーであるかを確認します。

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 イベントを発生させます。

(継承元 Control)
OnClick(EventArgs)

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

(継承元 Control)
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)

Windows コンボ ボックス コントロールを表します。

(継承元 Control)
OnDataSourceChanged(EventArgs)

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

OnDisplayMemberChanged(EventArgs)

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

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 イベントを発生させます。

OnDropDown(EventArgs)

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

OnDropDownClosed(EventArgs)

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

OnDropDownStyleChanged(EventArgs)

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

OnEnabledChanged(EventArgs)

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

(継承元 Control)
OnEnter(EventArgs)

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

(継承元 Control)
OnFontChanged(EventArgs)

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

OnForeColorChanged(EventArgs)

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

OnFormat(ListControlConvertEventArgs)

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

(継承元 ListControl)
OnFormatInfoChanged(EventArgs)

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

(継承元 ListControl)
OnFormatStringChanged(EventArgs)

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

(継承元 ListControl)
OnFormattingEnabledChanged(EventArgs)

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

(継承元 ListControl)
OnGiveFeedback(GiveFeedbackEventArgs)

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

(継承元 Control)
OnGotFocus(EventArgs)

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

OnHandleCreated(EventArgs)

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

OnHandleDestroyed(EventArgs)

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

OnHelpRequested(HelpEventArgs)

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

(継承元 Control)
OnImeModeChanged(EventArgs)

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

(継承元 Control)
OnInvalidated(InvalidateEventArgs)

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

(継承元 Control)
OnKeyDown(KeyEventArgs)

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

OnKeyDown(KeyEventArgs)

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

(継承元 Control)
OnKeyPress(KeyPressEventArgs)

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

OnKeyUp(KeyEventArgs)

Windows コンボ ボックス コントロールを表します。

OnKeyUp(KeyEventArgs)

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

(継承元 Control)
OnLayout(LayoutEventArgs)

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

(継承元 Control)
OnLeave(EventArgs)

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

(継承元 Control)
OnLocationChanged(EventArgs)

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

(継承元 Control)
OnLostFocus(EventArgs)

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

OnMarginChanged(EventArgs)

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

(継承元 Control)
OnMeasureItem(MeasureItemEventArgs)

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

OnMouseCaptureChanged(EventArgs)

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

(継承元 Control)
OnMouseClick(MouseEventArgs)

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

(継承元 Control)
OnMouseDoubleClick(MouseEventArgs)

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

(継承元 Control)
OnMouseDown(MouseEventArgs)

Windows コンボ ボックス コントロールを表します。

OnMouseDown(MouseEventArgs)

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

(継承元 Control)
OnMouseEnter(EventArgs)

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

OnMouseEnter(EventArgs)

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

(継承元 Control)
OnMouseHover(EventArgs)

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

(継承元 Control)
OnMouseLeave(EventArgs)

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

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 イベントを発生させます。

OnParentBackgroundImageChanged(EventArgs)

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

(継承元 Control)
OnParentBindingContextChanged(EventArgs)

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

(継承元 Control)
OnParentChanged(EventArgs)

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

(継承元 Control)
OnParentCursorChanged(EventArgs)

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

(継承元 Control)
OnParentDataContextChanged(EventArgs)

Windows コンボ ボックス コントロールを表します。

(継承元 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 イベントを発生させます。

OnRightToLeftChanged(EventArgs)

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

(継承元 Control)
OnSelectedIndexChanged(EventArgs)

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

OnSelectedItemChanged(EventArgs)

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

OnSelectedValueChanged(EventArgs)

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

OnSelectionChangeCommitted(EventArgs)

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

OnSizeChanged(EventArgs)

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

(継承元 Control)
OnStyleChanged(EventArgs)

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

(継承元 Control)
OnSystemColorsChanged(EventArgs)

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

(継承元 Control)
OnTabIndexChanged(EventArgs)

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

(継承元 Control)
OnTabStopChanged(EventArgs)

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

(継承元 Control)
OnTextChanged(EventArgs)

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

OnTextChanged(EventArgs)

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

(継承元 Control)
OnTextUpdate(EventArgs)

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

OnValidated(EventArgs)

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

(継承元 Control)
OnValidating(CancelEventArgs)

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

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)

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

ProcessCmdKey(Message, Keys)

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

(継承元 Control)
ProcessDialogChar(Char)

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

(継承元 Control)
ProcessDialogKey(Keys)

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

(継承元 Control)
ProcessKeyEventArgs(Message)

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

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()

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

(継承元 Control)
RefreshItem(Int32)

指定した位置にある項目を更新します。

RefreshItems()

ComboBox のすべての項目を更新します。

RefreshItems()

派生クラスでオーバーライドされると、項目のデータとデータ ソースの内容との同期をとり直します。

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

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

(継承元 Control)
ResetBackColor()

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

(継承元 Control)
ResetBindings()

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

(継承元 Control)
ResetCursor()

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

(継承元 Control)
ResetFont()

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

(継承元 Control)
ResetForeColor()

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

(継承元 Control)
ResetImeMode()

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

(継承元 Control)
ResetMouseEventArgs()

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

(継承元 Control)
ResetRightToLeft()

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

(継承元 Control)
ResetText()

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

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)

コントロールの位置、サイズ、パディング、余白をスケーリングします。

ScaleControl(SizeF, BoundsSpecified)

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

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

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

(継承元 Control)
Select()

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

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

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

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

ComboBox の編集できる部分のテキストの範囲を選択します。

SelectAll()

ComboBox の編集できる部分のテキストをすべて選択します。

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)

ComboBox のサイズと位置を設定します。

SetClientSizeCore(Int32, Int32)

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

(継承元 Control)
SetItemCore(Int32, Object)

派生クラスでオーバーライドされると、指定したインデックスのオブジェクトを派生クラスで設定します。

SetItemsCore(IList)

派生クラスでオーバーライドされると、コレクション内の指定したオブジェクトの配列を派生クラスで設定します。

SetStyle(ControlStyles, Boolean)

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

(継承元 Control)
SetTopLevel(Boolean)

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

(継承元 Control)
SetVisibleCore(Boolean)

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

(継承元 Control)
Show()

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

(継承元 Control)
SizeFromClientSize(Size)

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

(継承元 Control)
SuspendLayout()

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

(継承元 Control)
ToString()

ComboBox コントロールを表す文字列を返します。

Update()

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

(継承元 Control)
UpdateBounds()

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

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

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

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

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

(継承元 Control)
UpdateStyles()

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

(継承元 Control)
UpdateZOrder()

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

(継承元 Control)
WndProc(Message)

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

イベント

AutoSizeChanged

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

(継承元 Control)
BackColorChanged

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

(継承元 Control)
BackgroundImageChanged

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

BackgroundImageLayoutChanged

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

BackgroundImageLayoutChanged

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

(継承元 Control)
BindingContextChanged

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

(継承元 Control)
CausesValidationChanged

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

(継承元 Control)
ChangeUICues

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

(継承元 Control)
Click

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

(継承元 Control)
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 が変更されたときに発生します。

(継承元 ListControl)
DisplayMemberChanged

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

(継承元 ListControl)
Disposed

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

(継承元 Component)
DockChanged

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

(継承元 Control)
DoubleClick

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

DoubleClick

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

(継承元 Control)
DpiChangedAfterParent

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

(継承元 Control)
DpiChangedBeforeParent

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

(継承元 Control)
DragDrop

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

(継承元 Control)
DragEnter

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

(継承元 Control)
DragLeave

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

(継承元 Control)
DragOver

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

(継承元 Control)
DrawItem

オーナー描画 ComboBox のビジュアルな部分を変更すると発生します。

DropDown

ComboBox のドロップダウン部分が表示されると発生します。

DropDownClosed

ComboBox のドロップダウン部分が見えなくなると発生します。

DropDownStyleChanged

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

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)
KeyDown

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

(継承元 Control)
KeyPress

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

(継承元 Control)
KeyUp

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

(継承元 Control)
Layout

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

(継承元 Control)
Leave

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

(継承元 Control)
LocationChanged

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

(継承元 Control)
LostFocus

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

(継承元 Control)
MarginChanged

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

(継承元 Control)
MeasureItem

オーナー描画 ComboBox の項目を描画する必要があるたびに発生し、また、リスト項目のサイズが判別された時点でも発生します。

MouseCaptureChanged

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

(継承元 Control)
MouseClick

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

(継承元 Control)
MouseDoubleClick

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

(継承元 Control)
MouseDown

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

(継承元 Control)
MouseEnter

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

(継承元 Control)
MouseHover

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

(継承元 Control)
MouseLeave

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

(継承元 Control)
MouseMove

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

(継承元 Control)
MouseUp

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

(継承元 Control)
MouseWheel

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

(継承元 Control)
Move

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

(継承元 Control)
PaddingChanged

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

PaddingChanged

コントロールの埋め込みが変更されたときに発生します。

(継承元 Control)
Paint

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

ParentChanged

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

(継承元 Control)
PreviewKeyDown

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

(継承元 Control)
QueryAccessibilityHelp

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

(継承元 Control)
QueryContinueDrag

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

(継承元 Control)
RegionChanged

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

(継承元 Control)
Resize

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

(継承元 Control)
RightToLeftChanged

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

(継承元 Control)
SelectedIndexChanged

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

SelectedValueChanged

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

(継承元 ListControl)
SelectionChangeCommitted

選択されている項目がユーザーによって変更され、その変更が ComboBox に表示された時点で発生します。

SizeChanged

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

(継承元 Control)
StyleChanged

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

(継承元 Control)
SystemColorsChanged

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

(継承元 Control)
TabIndexChanged

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

(継承元 Control)
TabStopChanged

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

(継承元 Control)
TextChanged

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

(継承元 Control)
TextUpdate

コントロールがテキストを書式設定した後、テキストが表示される前に発生します。

Validated

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

(継承元 Control)
Validating

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

(継承元 Control)
ValueMemberChanged

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

(継承元 ListControl)
VisibleChanged

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

(継承元 Control)

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

IDropTarget.OnDragDrop(DragEventArgs)

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

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

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

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

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

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

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

(継承元 Control)

適用対象