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
继承
派生
属性

示例

下面的代码示例是一个完整的应用程序,演示如何使用 Add 方法将项添加到 ,FindStringComboBox使用 方法查找 中的ComboBox项,以及 BeginUpdate 使用 和 EndUpdate 方法有效地将大量项添加到 。ComboBox 存储与显示的文本不同的值的功能继承自 ListControl。 有关如何使用此功能的示例,请参阅 ListControl 类。

必须添加对 System.DrawingSystem.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 (通过 Items) 的 ComboBox 属性。 可以使用 方法分配对象引用 AddRange 的数组。 然后,该列表会显示每个对象的默认字符串值。 可以使用 方法添加单个对象 Add 。 可以使用 方法删除项, Remove 也可以使用 方法清除整个列表 Clear

除了显示和选择功能外, ComboBox 还提供了一项功能,使你能够有效地向 ComboBox 添加项,并在列表项内查找文本。 BeginUpdate使用 和 EndUpdate 方法,可以将大量项添加到 ,ComboBox而无需在每次将项添加到列表中时重新绘制控件。 和 FindStringFindStringExact 方法使你能够在列表中搜索包含特定搜索字符串的项。

可以使用这些属性管理列表中的当前选定项, Text 使用 属性来指定在编辑字段中显示的字符串, SelectedIndex 使用 属性来获取或设置当前项,以及 SelectedItem 用于获取或设置对 对象的引用的 属性。

注意

如果在基Windows 窗体页上有 ListBoxComboBoxCheckedListBox ,并且想要修改派生窗体中这些控件的字符串集合,则基窗体中这些控件的字符串集合必须为空。 如果字符串集合不为空,则当您派生另一个窗体时,它们将变为只读。

构造函数

ComboBox()

初始化 ComboBox 类的新实例。

属性

AccessibilityObject

获取分配给该控件的 AccessibleObject

(继承自 Control)
AccessibleDefaultActionDescription

获取或设置控件的默认操作说明以供具有辅助功能的客户端应用程序使用。

(继承自 Control)
AccessibleDescription

获取或设置辅助功能客户端应用程序使用的控件说明。

(继承自 Control)
AccessibleName

获取或设置辅助功能客户端应用程序所使用的控件名称。

(继承自 Control)
AccessibleRole

获取或设置控件的辅助性角色。

(继承自 Control)
AllowDrop

获取或设置一个值,该值指示控件是否可以接受用户拖放到它上面的数据。

(继承自 Control)
AllowSelection

获取一个值,该值指示列表是否启用列表项的选择。

(继承自 ListControl)
Anchor

获取或设置控件绑定到的容器的边缘并确定控件如何随其父级一起调整大小。

(继承自 Control)
AutoCompleteCustomSource

获取或设置一个自定义 StringCollection,以便在 AutoCompleteSource 属性被设置为 CustomSource 时使用。

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

获取包含 IContainerComponent

(继承自 Component)
ContainsFocus

获取一个值,该值指示控件或它的一个子控件当前是否有输入焦点。

(继承自 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) 模式。

(继承自 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

获取或设置一个值,该值指示此控件是否应使用辅助缓冲区重绘其图面,以减少或避免闪烁。

(继承自 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

获取一个值,该值指示控件是否包含一个或多个子控件。

(继承自 Control)
Height

获取或设置控件的高度。

(继承自 Control)
ImeMode

获取或设置控件的输入法编辑器 (IME) 模式。

(继承自 Control)
ImeModeBase

获取或设置控件的 IME 模式。

(继承自 Control)
IntegralHeight

获取或设置一个值,该值指示控件是否应调整大小以避免只显示项的局部。

InvokeRequired

获取一个值,该值指示调用方在对控件进行方法调用时是否必须调用 Invoke 方法,因为调用方位于创建控件所在的线程以外的线程中。

(继承自 Control)
IsAccessible

获取或设置一个值,该值指示控件对辅助功能应用程序是否可见。

(继承自 Control)
IsAncestorSiteInDesignMode

指示此控件的上级之一是否位于 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

获取或设置控件在其容器内的 Tab 键顺序。

(继承自 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()

BeginUpdate() 方法挂起绘制后,该方法恢复绘制 ComboBox 控件。

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

沿着控件的父控件链向上,返回下一个 ContainerControl

(继承自 Control)
GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetItemHeight(Int32)

返回 ComboBox 中某项的高度。

GetItemText(Object)

返回指定项的文本表示形式。

(继承自 ListControl)
GetLifetimeService()
已过时.

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetNextControl(Control, Boolean)

按照子控件的 Tab 键顺序向前或向后检索下一个控件。

(继承自 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)

激活子控件。 还可以指定从中选择控件的 Tab 键顺序的方向。

(继承自 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 标志设置为 truefalse

(继承自 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

在控件有焦点的情况下 字符、空格或退格键时发生。

(继承自 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)

适用于