通过


CheckedListBox 类

定义

显示一个 ListBox 复选框显示在每个项的左侧。

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

示例

下面的示例演示如何使用方法、属性和集合 CheckedListBox。 这是一个完整示例,可在将它复制到项目后运行。 可以选中和取消选中项目,使用文本框添加项目,单击保存按钮后,清除选中的项目。

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

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

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

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

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

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

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

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

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

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

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

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

      button3->Enabled = false;
   }
};

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

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

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

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

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

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

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

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

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

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

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

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

注解

此控件提供用户可以使用控件右侧的键盘或滚动条导航的项列表。 用户可以在一个或多个项目旁放置复选标记,并且已选择的项目可以使用CheckedListBox.CheckedItemCollectionCheckedListBox.CheckedIndexCollection导航。

若要在运行时将对象添加到列表中,请使用该方法分配对象引用 AddRange 数组。 然后,该列表显示每个对象的默认字符串值。 可以使用该方法将单个项添加到列表中 Add

CheckedListBox 对象通过 CheckState 枚举支持三种状态: CheckedIndeterminateUnchecked。 必须设置代码中的状态 Indeterminate ,因为用户界面 CheckedListBox 不提供执行此操作的机制。

true如果是UseTabStopsCheckedListBox则会识别和展开项文本中的制表符,从而创建列。 这些制表位是预设的,不能更改。 若要使用自定义制表位,请设置为falseUseTabStops、设置为UseCustomTabOffsetstrue自定义值并将自定义值添加到CustomTabOffsets集合中。

注释

UseCompatibleTextRendering如果该属性为falseCustomTabOffsets则会忽略该属性,并将其替换为标准制表位偏移量。

CheckedListBox 类支持以下三个索引集合:

Collection 封装类
控件中包含的 CheckedListBox 所有项。 CheckedListBox.ObjectCollection
选中的项目(包括处于不确定状态的项),这是控件中包含的 CheckedListBox 项的子集。 CheckedListBox.CheckedItemCollection
选中的索引,它是项集合中索引的子集。 这些索引指定处于选中状态或不确定状态的项。 CheckedListBox.CheckedIndexCollection

以下三个表是类支持的三个索引集合 CheckedListBox 的示例。

第一个表提供了控件中项的索引集合(控件中包含的所有项)的示例。

索引 物品 检查状态
0 对象 1 Unchecked
1 对象 2 Checked
2 对象 3 Unchecked
3 对象 4 Indeterminate
4 对象 5 Checked

第二个表提供了已检查项的索引集合的示例。

索引 物品
0 对象 2
1 对象 4
2 对象 5

第三个表提供了已检查项索引索引的索引集合的示例。

索引 项的索引
0 1
1 3
2 4

构造函数

名称 说明
CheckedListBox()

初始化 CheckedListBox 类的新实例。

字段

名称 说明
DefaultItemHeight

指定所有者绘制 ListBox的默认项高度。

(继承自 ListBox)
NoMatches

指定在搜索过程中找不到任何匹配项。

(继承自 ListBox)

属性

名称 说明
AccessibilityObject

AccessibleObject获取分配给控件的控件。

(继承自 Control)
AccessibleDefaultActionDescription

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

(继承自 Control)
AccessibleDescription

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

(继承自 Control)
AccessibleName

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

(继承自 Control)
AccessibleRole

获取或设置控件的可访问角色。

(继承自 Control)
AllowDrop

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

(继承自 Control)
AllowSelection

获取一个值,该值指示当前是否 ListBox 允许选择列表项。

(继承自 ListBox)
Anchor

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

(继承自 Control)
AutoScrollOffset

获取或设置此控件滚动到的位置 ScrollControlIntoView(Control)

(继承自 Control)
AutoSize

此属性与此类无关。

(继承自 Control)
BackColor

获取或设置控件的背景色。

(继承自 ListBox)
BackgroundImage

此属性与此类无关。

(继承自 ListBox)
BackgroundImageLayout

获取或设置枚举中ImageLayout定义的背景图像布局ListBox

(继承自 ListBox)
BindingContext

获取或设置 BindingContext 控件。

(继承自 Control)
BorderStyle

获取或设置在周围绘制的 ListBox边框类型。

(继承自 ListBox)
Bottom

获取控件的下边缘与其容器工作区的上边缘之间的距离(以像素为单位)。

(继承自 Control)
Bounds

获取或设置控件的大小和位置,包括其相对于父控件的非client 元素(以像素为单位)。

(继承自 Control)
CanEnableIme

获取一个值,该值指示属性是否可以 ImeMode 设置为活动值,以启用 IME 支持。

(继承自 Control)
CanFocus

获取一个值,该值指示控件是否可以接收焦点。

(继承自 Control)
CanRaiseEvents

确定是否可以在控件上引发事件。

(继承自 Control)
CanSelect

获取一个值,该值指示是否可以选择控件。

(继承自 Control)
Capture

获取或设置一个值,该值指示控件是否已捕获鼠标。

(继承自 Control)
CausesValidation

获取或设置一个值,该值指示控件是否导致验证在收到焦点时需要验证的任何控件上执行。

(继承自 Control)
CheckedIndices

CheckedListBox中已检查索引的集合。

CheckedItems

CheckedListBox中已选中项的集合。

CheckOnClick

获取或设置一个值,该值指示选中某个项时是否应切换复选框。

ClientRectangle

获取表示控件工作区的矩形。

(继承自 Control)
ClientSize

获取或设置控件工作区的高度和宽度。

(继承自 Control)
ColumnWidth

获取或设置多列 ListBox的宽度。

(继承自 ListBox)
CompanyName

获取包含控件的应用程序的公司或创建者的名称。

(继承自 Control)
Container

IContainer获取包含 .Component

(继承自 Component)
ContainsFocus

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

(继承自 Control)
ContextMenu
已过时.

获取或设置与控件关联的快捷菜单。

(继承自 Control)
ContextMenuStrip

获取或设置 ContextMenuStrip 与此控件关联的值。

(继承自 Control)
Controls

获取控件中包含的控件的集合。

(继承自 Control)
Created

获取一个值,该值指示是否已创建控件。

(继承自 Control)
CreateParams

获取创建控件句柄时所需的创建参数。

Cursor

获取或设置鼠标指针位于控件上时显示的光标。

(继承自 Control)
CustomTabOffsets

获取项 ListBox之间的选项卡的宽度。

(继承自 ListBox)
DataBindings

获取控件的数据绑定。

(继承自 Control)
DataContext

获取或设置用于数据绑定的数据上下文。 这是一个环境属性。

(继承自 Control)
DataManager

获取 CurrencyManager 与此控件关联的控件。

(继承自 ListControl)
DataSource

获取或设置控件的数据源。

DefaultCursor

获取或设置控件的默认游标。

(继承自 Control)
DefaultImeMode

获取控件支持的默认输入法编辑器 (IME) 模式。

(继承自 Control)
DefaultMargin

获取默认情况下在控件之间指定的空间(以像素为单位)。

(继承自 Control)
DefaultMaximumSize

获取指定为控件的默认最大大小的长度和高度(以像素为单位)。

(继承自 Control)
DefaultMinimumSize

获取指定为控件的默认最小大小的长度和高度(以像素为单位)。

(继承自 Control)
DefaultPadding

获取控件内容的默认内部间距(以像素为单位)。

(继承自 Control)
DefaultSize

获取控件的默认大小。

(继承自 ListBox)
DesignMode

获取一个值,该值指示当前是否 Component 处于设计模式。

(继承自 Component)
DeviceDpi

获取当前显示控件的显示设备的 DPI 值。

(继承自 Control)
DisplayMember

获取或设置一个字符串,该字符串指定要显示其内容的列表框中包含的对象的属性。

DisplayRectangle

获取表示控件的显示区域的矩形。

(继承自 Control)
Disposing

获取一个值,该值指示基 Control 类是否正在处理。

(继承自 Control)
Dock

获取或设置哪些控件边框停靠到其父控件,并确定控件如何调整其父级的大小。

(继承自 Control)
DoubleBuffered

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

(继承自 Control)
DrawMode

获取一个值,该值指示绘制元素的 CheckedListBox模式。 此属性与此类无关。

Enabled

获取或设置一个值,该值指示控件是否可以响应用户交互。

(继承自 Control)
Events

获取附加到此 Component对象的事件处理程序的列表。

(继承自 Component)
Focused

获取一个值,该值指示控件是否具有输入焦点。

(继承自 Control)
Font

获取或设置控件显示的文本的字体。

(继承自 ListBox)
FontHeight

获取或设置控件字体的高度。

(继承自 Control)
ForeColor

获取或设置控件的前景色。

(继承自 ListBox)
FormatInfo

获取或设置 IFormatProvider 提供自定义格式设置行为的设置。

(继承自 ListControl)
FormatString

获取或设置指示如何显示值的格式说明符字符。

(继承自 ListControl)
FormattingEnabled

获取或设置一个值,该值指示是否将格式应用于DisplayMember该属性。ListControl

(继承自 ListControl)
Handle

获取控件绑定到的窗口句柄。

(继承自 Control)
HasChildren

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

(继承自 Control)
Height

获取或设置控件的高度。

(继承自 Control)
HorizontalExtent

获取或设置可滚动的水平滚动条 ListBox 的宽度。

(继承自 ListBox)
HorizontalScrollbar

获取或设置一个值,该值指示是否在控件中显示水平滚动条。

(继承自 ListBox)
ImeMode

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

(继承自 Control)
ImeModeBase

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

(继承自 Control)
IntegralHeight

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

(继承自 ListBox)
InvokeRequired

获取一个值,该值指示调用方在对控件进行方法调用时是否必须调用调用方法,因为调用方与创建控件的线程不同。

(继承自 Control)
IsAccessible

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

(继承自 Control)
IsAncestorSiteInDesignMode

指示此控件的上级位置之一是否位于 DesignMode 中。 此属性为只读。

(继承自 Control)
IsDisposed

获取一个值,该值指示控件是否已释放。

(继承自 Control)
IsHandleCreated

获取一个值,该值指示控件是否具有与之关联的句柄。

(继承自 Control)
IsMirrored

获取一个值,该值指示控件是否镜像。

(继承自 Control)
ItemHeight

获取项区域的高度。

Items

获取此 CheckedListBox项的集合。

LayoutEngine

获取控件布局引擎的缓存实例。

(继承自 Control)
Left

获取或设置控件左边缘与其容器工作区的左边缘之间的距离(以像素为单位)。

(继承自 Control)
Location

获取或设置控件左上角相对于其容器左上角的坐标。

(继承自 Control)
Margin

获取或设置控件之间的间距。

(继承自 Control)
MaximumSize

获取或设置可指定上限 GetPreferredSize(Size) 的大小。

(继承自 Control)
MinimumSize

获取或设置可以指定的下限 GetPreferredSize(Size) 的大小。

(继承自 Control)
MultiColumn

获取或设置一个值,该值指示是否 ListBox 支持多个列。

(继承自 ListBox)
Name

获取或设置控件的名称。

(继承自 Control)
Padding

获取或设置在 . 中的 CheckedListBox填充。 此属性与此类无关。

Parent

获取或设置控件的父容器。

(继承自 Control)
PreferredHeight

获取 .. 中 ListBox所有项的组合高度。

(继承自 ListBox)
PreferredSize

获取控件可以容纳到的矩形区域的大小。

(继承自 Control)
ProductName

获取包含控件的程序集的产品名称。

(继承自 Control)
ProductVersion

获取包含控件的程序集的版本。

(继承自 Control)
RecreatingHandle

获取一个值,该值指示控件当前是否正在重新创建其句柄。

(继承自 Control)
Region

获取或设置与控件关联的窗口区域。

(继承自 Control)
RenderRightToLeft
已过时.
已过时.

此属性现已过时。

(继承自 Control)
ResizeRedraw

获取或设置一个值,该值指示控件在调整大小时是否重新绘制自身。

(继承自 Control)
Right

获取控件右边缘与其容器工作区的左边缘之间的距离(以像素为单位)。

(继承自 Control)
RightToLeft

获取或设置一个值,该值指示控件显示的文本是否从右到左显示。

(继承自 ListBox)
ScaleChildren

获取一个值,该值确定子控件的缩放。

(继承自 Control)
ScrollAlwaysVisible

获取或设置一个值,该值指示是否随时显示垂直滚动条。

(继承自 ListBox)
SelectedIndex

获取或设置当前选定项的 ListBox从零开始的索引。

(继承自 ListBox)
SelectedIndices

获取一个集合,该集合包含当前所有选定项的 ListBox从零开始的索引。

(继承自 ListBox)
SelectedItem

获取或设置当前选定的项。ListBox

(继承自 ListBox)
SelectedItems

获取包含当前选定项的 ListBox集合。

(继承自 ListBox)
SelectedValue

获取或设置由该属性指定的 ValueMember 成员属性的值。

(继承自 ListControl)
SelectionMode

获取或设置一个值,该值指定选择模式。

ShowFocusCues

获取一个值,该值指示控件是否应显示焦点矩形。

(继承自 Control)
ShowKeyboardCues

获取一个值,该值指示用户界面是否处于适当的状态以显示或隐藏键盘加速器。

(继承自 Control)
Site

获取或设置控件的站点。

(继承自 Control)
Size

获取或设置控件的高度和宽度。

(继承自 Control)
Sorted

获取或设置一个值,该值指示项 ListBox 是否按字母顺序排序。

(继承自 ListBox)
TabIndex

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

(继承自 Control)
TabStop

获取或设置一个值,该值指示用户是否可以使用 TAB 键向此控件提供焦点。

(继承自 Control)
Tag

获取或设置包含有关控件的数据的对象。

(继承自 Control)
Text

获取或搜索当前选定项的文本 ListBox

(继承自 ListBox)
ThreeDCheckBoxes

获取或设置一个值,该值指示复选框是否具有 ButtonStateFlatNormal

Top

获取或设置控件上边缘与其容器工作区上边缘之间的距离(以像素为单位)。

(继承自 Control)
TopIndex

获取或设置第 ListBox一个可见项的索引。

(继承自 ListBox)
TopLevelControl

获取其他 Windows 窗体控件未父控件的父控件。 通常,这是控件包含在的最外层 Form

(继承自 Control)
UseCompatibleTextRendering

获取或设置一个值,该值确定是否使用 Graphics 类(GDI+)或 TextRenderer 类(GDI)来呈现文本。

UseCustomTabOffsets

获取或设置一个值,该值指示在使用整数数组绘制其字符串CustomTabOffsets时,它是否ListBox识别并展开制表符。

(继承自 ListBox)
UseTabStops

获取或设置一个值,该值指示在绘制其字符串时是否可以 ListBox 识别和展开制表符。

(继承自 ListBox)
UseWaitCursor

获取或设置一个值,该值指示是否对当前控件和所有子控件使用等待游标。

(继承自 Control)
ValueMember

获取或设置一个字符串,该字符串指定要从中绘制值的数据源的属性。

Visible

获取或设置一个值,该值指示是否显示控件及其所有子控件。

(继承自 Control)
Width

获取或设置控件的宽度。

(继承自 Control)
WindowTarget

此属性与此类无关。

(继承自 Control)

方法

名称 说明
AccessibilityNotifyClients(AccessibleEvents, Int32, Int32)

通知为指定的子控件指定的 AccessibleEvents 辅助功能客户端应用程序。

(继承自 Control)
AccessibilityNotifyClients(AccessibleEvents, Int32)

通知为指定的子控件指定的 AccessibleEvents 辅助功能客户端应用程序。

(继承自 Control)
AddItemsCore(Object[])
已过时.
已过时.

此成员已过时,没有替换项。

(继承自 ListBox)
BeginInvoke(Action)

在创建控件的基础句柄的线程上异步执行指定的委托。

(继承自 Control)
BeginInvoke(Delegate, Object[])

在创建控件的基础句柄的线程上,使用指定的参数异步执行指定的委托。

(继承自 Control)
BeginInvoke(Delegate)

在创建控件的基础句柄的线程上异步执行指定的委托。

(继承自 Control)
BeginUpdate()

通过阻止控件在调用方法之前EndUpdate(),一次将项添加到ListBox一个控件,从而保持性能。

(继承自 ListBox)
BringToFront()

将控件置于 z 顺序的前面。

(继承自 Control)
ClearSelected()

取消选择所有项。ListBox

(继承自 ListBox)
Contains(Control)

检索一个值,该值指示指定的控件是否为控件的子级。

(继承自 Control)
CreateAccessibilityInstance()

CheckedListBox 控件创建新的辅助功能对象。

CreateControl()

强制创建可见控件,包括创建句柄和任何可见子控件。

(继承自 Control)
CreateControlsInstance()

为控件创建控件集合的新实例。

(继承自 Control)
CreateGraphics()

Graphics创建控件。

(继承自 Control)
CreateHandle()

为控件创建句柄。

(继承自 Control)
CreateItemCollection()

创建项集合的新实例。

CreateObjRef(Type)

创建一个对象,其中包含生成用于与远程对象通信的代理所需的所有相关信息。

(继承自 MarshalByRefObject)
DefWndProc(Message)

将指定的消息发送到默认窗口过程。

(继承自 Control)
DestroyHandle()

销毁与控件关联的句柄。

(继承自 Control)
Dispose()

释放该 Component命令使用的所有资源。

(继承自 Component)
Dispose(Boolean)

释放由及其子控件使用 Control 的非托管资源,并选择性地释放托管资源。

(继承自 Control)
DoDragDrop(Object, DragDropEffects, Bitmap, Point, Boolean)

开始拖动操作。

(继承自 Control)
DoDragDrop(Object, DragDropEffects)

开始拖放操作。

(继承自 Control)
DoDragDropAsJson<T>(T, DragDropEffects, Bitmap, Point, Boolean)

显示一个 ListBox 复选框显示在每个项的左侧。

(继承自 Control)
DoDragDropAsJson<T>(T, DragDropEffects)

显示一个 ListBox 复选框显示在每个项的左侧。

(继承自 Control)
DrawToBitmap(Bitmap, Rectangle)

支持呈现到指定的位图。

(继承自 Control)
EndInvoke(IAsyncResult)

检索传递的异步操作 IAsyncResult 的返回值。

(继承自 Control)
EndUpdate()

方法暂停BeginUpdate()绘制后恢复绘制ListBox控件。

(继承自 ListBox)
Equals(Object)

确定指定的对象是否等于当前对象。

(继承自 Object)
FilterItemOnProperty(Object, String)

如果该项是给定项和属性名称的对象的属性,则返回该项的当前值 ListControl

(继承自 ListControl)
FilterItemOnProperty(Object)

如果该项是给定项的属性,则检索该项的 ListControl 当前值。

(继承自 ListControl)
FindForm()

检索控件打开的窗体。

(继承自 Control)
FindString(String, Int32)

查找以指定字符串开头的第一项 ListBox 。 搜索从特定的起始索引开始。

(继承自 ListBox)
FindString(String)

查找以指定字符串开头的第一项 ListBox

(继承自 ListBox)
FindStringExact(String, Int32)

查找与指定字符串完全匹配的第一项 ListBox 。 搜索从特定的起始索引开始。

(继承自 ListBox)
FindStringExact(String)

查找与指定字符串完全匹配的第一项 ListBox

(继承自 ListBox)
Focus()

将输入焦点设置为控件。

(继承自 Control)
GetAccessibilityObjectById(Int32)

检索指定的 AccessibleObject

(继承自 Control)
GetAutoSizeMode()

检索一个值,该值指示控件在启用控件 AutoSize 属性时的行为方式。

(继承自 Control)
GetChildAtPoint(Point, GetChildAtPointSkip)

检索位于指定坐标处的子控件,指定是否忽略特定类型的子控件。

(继承自 Control)
GetChildAtPoint(Point)

检索位于指定坐标处的子控件。

(继承自 Control)
GetContainerControl()

返回控件的父控件链的下一个 ContainerControl

(继承自 Control)
GetHashCode()

用作默认哈希函数。

(继承自 Object)
GetItemChecked(Int32)

返回一个值,该值指示是否检查指定的项。

GetItemCheckState(Int32)

返回一个值,该值指示当前项的检查状态。

GetItemHeight(Int32)

返回项在 . 中的 ListBox高度。

(继承自 ListBox)
GetItemRectangle(Int32)

返回项 ListBox的边界矩形。

(继承自 ListBox)
GetItemText(Object)

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

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

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

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

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

(继承自 Control)
GetPreferredSize(Size)

检索可安装控件的矩形区域的大小。

(继承自 Control)
GetScaledBounds(Rectangle, SizeF, BoundsSpecified)

检索在其中缩放边界的边界 ListBox

(继承自 ListBox)
GetSelected(Int32)

返回一个值,该值指示是否选择了指定的项。

(继承自 ListBox)
GetService(Type)

返回一个对象,该对象表示服务由 Component 或其 Container提供的服务。

(继承自 Component)
GetStyle(ControlStyles)

检索控件的指定控件样式位的值。

(继承自 Control)
GetTopLevel()

确定控件是否为顶级控件。

(继承自 Control)
GetType()

获取当前实例的 Type

(继承自 Object)
Hide()

隐藏用户的控件。

(继承自 Control)
IndexFromPoint(Int32, Int32)

返回指定坐标处项的从零开始的索引。

(继承自 ListBox)
IndexFromPoint(Point)

返回指定坐标处项的从零开始的索引。

(继承自 ListBox)
InitializeLifetimeService()
已过时.

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
InitLayout()

在控件添加到另一个容器后调用。

(继承自 Control)
Invalidate()

使控件的整个图面失效,并使控件重新绘制。

(继承自 Control)
Invalidate(Boolean)

使控件的特定区域失效,并导致绘制消息发送到控件。 (可选)使分配给控件的子控件失效。

(继承自 Control)
Invalidate(Rectangle, Boolean)

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。 (可选)使分配给控件的子控件失效。

(继承自 Control)
Invalidate(Rectangle)

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。

(继承自 Control)
Invalidate(Region, Boolean)

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。 (可选)使分配给控件的子控件失效。

(继承自 Control)
Invalidate(Region)

使控件的指定区域失效(将其添加到控件的更新区域,即将在下一次绘制操作时重新绘制的区域),并导致绘制消息发送到控件。

(继承自 Control)
Invoke(Action)

在拥有控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
Invoke(Delegate, Object[])

在拥有控件的基础窗口句柄的线程上,使用指定的参数列表执行指定的委托。

(继承自 Control)
Invoke(Delegate)

在拥有控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
Invoke<T>(Func<T>)

在拥有控件的基础窗口句柄的线程上执行指定的委托。

(继承自 Control)
InvokeAsync(Action, CancellationToken)

在拥有控件句柄的线程上异步调用指定的同步回调。

(继承自 Control)
InvokeAsync(Func<CancellationToken,ValueTask>, CancellationToken)

在拥有控件句柄的线程上执行指定的异步回调。

(继承自 Control)
InvokeAsync<T>(Func<CancellationToken,ValueTask<T>>, CancellationToken)

在拥有控件句柄的线程上执行指定的异步回调。

(继承自 Control)
InvokeAsync<T>(Func<T>, CancellationToken)

在拥有控件句柄的线程上异步调用指定的同步回调。

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

处理特殊输入键,例如 PAGE UP、PAGE DOWN、HOME、END 等。

(继承自 ListControl)
LogicalToDeviceUnits(Int32)

将逻辑 DPI 值转换为其等效的 DeviceUnit DPI 值。

(继承自 Control)
LogicalToDeviceUnits(Size)

通过缩放当前 DPI 的大小并将其舍入为最接近的整数值(宽度和高度)从逻辑单位转换为设备单位。

(继承自 Control)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
NotifyInvalidate(Rectangle)

Invalidated使用控件的指定区域引发事件,使该事件失效。

(继承自 Control)
OnAutoSizeChanged(EventArgs)

引发 AutoSizeChanged 事件。

(继承自 Control)
OnBackColorChanged(EventArgs)

引发 BackColorChanged 事件。

OnBackgroundImageChanged(EventArgs)

引发 BackgroundImageChanged 事件。

(继承自 Control)
OnBackgroundImageLayoutChanged(EventArgs)

引发 BackgroundImageLayoutChanged 事件。

(继承自 Control)
OnBindingContextChanged(EventArgs)

引发 BindingContextChanged 事件。

(继承自 ListControl)
OnCausesValidationChanged(EventArgs)

引发 CausesValidationChanged 事件。

(继承自 Control)
OnChangeUICues(UICuesEventArgs)

引发 ChangeUICues 事件。

(继承自 ListBox)
OnClick(EventArgs)

引发 Click 事件。

OnClientSizeChanged(EventArgs)

引发 ClientSizeChanged 事件。

(继承自 Control)
OnContextMenuChanged(EventArgs)
已过时.

引发 ContextMenuChanged 事件。

(继承自 Control)
OnContextMenuStripChanged(EventArgs)

引发 ContextMenuStripChanged 事件。

(继承自 Control)
OnControlAdded(ControlEventArgs)

引发 ControlAdded 事件。

(继承自 Control)
OnControlRemoved(ControlEventArgs)

引发 ControlRemoved 事件。

(继承自 Control)
OnCreateControl()

CreateControl()引发方法。

(继承自 Control)
OnCursorChanged(EventArgs)

引发 CursorChanged 事件。

(继承自 Control)
OnDataContextChanged(EventArgs)

显示一个 ListBox 复选框显示在每个项的左侧。

(继承自 Control)
OnDataSourceChanged(EventArgs)

引发 DataSourceChanged 事件。

(继承自 ListBox)
OnDisplayMemberChanged(EventArgs)

引发 DisplayMemberChanged 事件。

(继承自 ListBox)
OnDockChanged(EventArgs)

引发 DockChanged 事件。

(继承自 Control)
OnDoubleClick(EventArgs)

引发 DoubleClick 事件。

(继承自 Control)
OnDpiChangedAfterParent(EventArgs)

引发 DpiChangedAfterParent 事件。

(继承自 Control)
OnDpiChangedBeforeParent(EventArgs)

引发 DpiChangedBeforeParent 事件。

(继承自 Control)
OnDragDrop(DragEventArgs)

引发 DragDrop 事件。

(继承自 Control)
OnDragEnter(DragEventArgs)

引发 DragEnter 事件。

(继承自 Control)
OnDragLeave(EventArgs)

引发 DragLeave 事件。

(继承自 Control)
OnDragOver(DragEventArgs)

引发 DragOver 事件。

(继承自 Control)
OnDrawItem(DrawItemEventArgs)

引发 DrawItem 事件。

OnEnabledChanged(EventArgs)

引发 EnabledChanged 事件。

(继承自 Control)
OnEnter(EventArgs)

引发 Enter 事件。

(继承自 Control)
OnFontChanged(EventArgs)

引发 FontChanged 事件。

OnForeColorChanged(EventArgs)

引发 ForeColorChanged 事件。

(继承自 Control)
OnFormat(ListControlConvertEventArgs)

引发 Format 事件。

(继承自 ListControl)
OnFormatInfoChanged(EventArgs)

引发 FormatInfoChanged 事件。

(继承自 ListControl)
OnFormatStringChanged(EventArgs)

引发 FormatStringChanged 事件。

(继承自 ListControl)
OnFormattingEnabledChanged(EventArgs)

引发 FormattingEnabledChanged 事件。

(继承自 ListControl)
OnGiveFeedback(GiveFeedbackEventArgs)

引发 GiveFeedback 事件。

(继承自 Control)
OnGotFocus(EventArgs)

引发 GotFocus 事件。

(继承自 ListBox)
OnHandleCreated(EventArgs)

引发 HandleCreated 事件。

OnHandleDestroyed(EventArgs)

重写以确保正确设置和清除项。 继承控件应调用 base.OnHandleDestroyed

(继承自 ListBox)
OnHelpRequested(HelpEventArgs)

引发 HelpRequested 事件。

(继承自 Control)
OnImeModeChanged(EventArgs)

引发 ImeModeChanged 事件。

(继承自 Control)
OnInvalidated(InvalidateEventArgs)

引发 Invalidated 事件。

(继承自 Control)
OnItemCheck(ItemCheckEventArgs)

引发 ItemCheck 事件。

OnKeyDown(KeyEventArgs)

引发 KeyDown 事件。

(继承自 Control)
OnKeyPress(KeyPressEventArgs)

引发 KeyPress 事件。

OnKeyUp(KeyEventArgs)

引发 KeyUp 事件。

(继承自 Control)
OnLayout(LayoutEventArgs)

引发 Layout 事件。

(继承自 Control)
OnLeave(EventArgs)

引发 Leave 事件。

(继承自 Control)
OnLocationChanged(EventArgs)

引发 LocationChanged 事件。

(继承自 Control)
OnLostFocus(EventArgs)

引发 LostFocus 事件。

(继承自 Control)
OnMarginChanged(EventArgs)

引发 MarginChanged 事件。

(继承自 Control)
OnMeasureItem(MeasureItemEventArgs)

引发 MeasureItem 事件。

OnMouseCaptureChanged(EventArgs)

引发 MouseCaptureChanged 事件。

(继承自 Control)
OnMouseClick(MouseEventArgs)

引发 MouseClick 事件。

(继承自 Control)
OnMouseDoubleClick(MouseEventArgs)

引发 MouseDoubleClick 事件。

(继承自 Control)
OnMouseDown(MouseEventArgs)

引发 MouseDown 事件。

(继承自 Control)
OnMouseEnter(EventArgs)

引发 MouseEnter 事件。

(继承自 Control)
OnMouseHover(EventArgs)

引发 MouseHover 事件。

(继承自 Control)
OnMouseLeave(EventArgs)

引发 MouseLeave 事件。

(继承自 Control)
OnMouseMove(MouseEventArgs)

引发 MouseMove 事件。

(继承自 Control)
OnMouseUp(MouseEventArgs)

引发 MouseUp 事件。

(继承自 Control)
OnMouseWheel(MouseEventArgs)

引发 MouseWheel 事件。

(继承自 Control)
OnMove(EventArgs)

引发 Move 事件。

(继承自 Control)
OnNotifyMessage(Message)

通知 Windows 消息的控制。

(继承自 Control)
OnPaddingChanged(EventArgs)

引发 PaddingChanged 事件。

(继承自 Control)
OnPaint(PaintEventArgs)

引发 Paint 事件。

(继承自 Control)
OnPaintBackground(PaintEventArgs)

绘制控件的背景。

(继承自 Control)
OnParentBackColorChanged(EventArgs)

BackColorChanged当控件容器的属性值更改时BackColor引发事件。

(继承自 Control)
OnParentBackgroundImageChanged(EventArgs)

BackgroundImageChanged当控件容器的属性值更改时BackgroundImage引发事件。

(继承自 Control)
OnParentBindingContextChanged(EventArgs)

BindingContextChanged当控件容器的属性值更改时BindingContext引发事件。

(继承自 Control)
OnParentChanged(EventArgs)

引发 ParentChanged 事件。

(继承自 ListBox)
OnParentCursorChanged(EventArgs)

引发 CursorChanged 事件。

(继承自 Control)
OnParentDataContextChanged(EventArgs)

显示一个 ListBox 复选框显示在每个项的左侧。

(继承自 Control)
OnParentEnabledChanged(EventArgs)

EnabledChanged当控件容器的属性值更改时Enabled引发事件。

(继承自 Control)
OnParentFontChanged(EventArgs)

FontChanged当控件容器的属性值更改时Font引发事件。

(继承自 Control)
OnParentForeColorChanged(EventArgs)

ForeColorChanged当控件容器的属性值更改时ForeColor引发事件。

(继承自 Control)
OnParentRightToLeftChanged(EventArgs)

RightToLeftChanged当控件容器的属性值更改时RightToLeft引发事件。

(继承自 Control)
OnParentVisibleChanged(EventArgs)

VisibleChanged当控件容器的属性值更改时Visible引发事件。

(继承自 Control)
OnPreviewKeyDown(PreviewKeyDownEventArgs)

引发 PreviewKeyDown 事件。

(继承自 Control)
OnPrint(PaintEventArgs)

引发 Paint 事件。

(继承自 Control)
OnQueryContinueDrag(QueryContinueDragEventArgs)

引发 QueryContinueDrag 事件。

(继承自 Control)
OnRegionChanged(EventArgs)

引发 RegionChanged 事件。

(继承自 Control)
OnResize(EventArgs)

引发 Resize 事件。

(继承自 ListBox)
OnRightToLeftChanged(EventArgs)

引发 RightToLeftChanged 事件。

(继承自 Control)
OnSelectedIndexChanged(EventArgs)

引发 SelectedIndexChanged 事件。

OnSelectedValueChanged(EventArgs)

引发 SelectedValueChanged 事件。

(继承自 ListBox)
OnSizeChanged(EventArgs)

引发 SizeChanged 事件。

(继承自 Control)
OnStyleChanged(EventArgs)

引发 StyleChanged 事件。

(继承自 Control)
OnSystemColorsChanged(EventArgs)

引发 SystemColorsChanged 事件。

(继承自 Control)
OnTabIndexChanged(EventArgs)

引发 TabIndexChanged 事件。

(继承自 Control)
OnTabStopChanged(EventArgs)

引发 TabStopChanged 事件。

(继承自 Control)
OnTextChanged(EventArgs)

引发 TextChanged 事件。

(继承自 Control)
OnValidated(EventArgs)

引发 Validated 事件。

(继承自 Control)
OnValidating(CancelEventArgs)

引发 Validating 事件。

(继承自 Control)
OnValueMemberChanged(EventArgs)

引发 ValueMemberChanged 事件。

(继承自 ListControl)
OnVisibleChanged(EventArgs)

引发 VisibleChanged 事件。

(继承自 Control)
PerformLayout()

强制控件将布局逻辑应用于其所有子控件。

(继承自 Control)
PerformLayout(Control, String)

强制控件将布局逻辑应用于其所有子控件。

(继承自 Control)
PointToClient(Point)

将指定屏幕点的位置计算为客户端坐标。

(继承自 Control)
PointToScreen(Point)

将指定客户端点的位置计算为屏幕坐标。

(继承自 Control)
PreProcessControlMessage(Message)

在调度键盘或输入消息之前,预处理消息循环中的键盘或输入消息。

(继承自 Control)
PreProcessMessage(Message)

在调度键盘或输入消息之前,预处理消息循环中的键盘或输入消息。

(继承自 Control)
ProcessCmdKey(Message, Keys)

处理命令键。

(继承自 Control)
ProcessDialogChar(Char)

处理对话字符。

(继承自 Control)
ProcessDialogKey(Keys)

处理对话键。

(继承自 Control)
ProcessKeyEventArgs(Message)

处理键消息并生成相应的控制事件。

(继承自 Control)
ProcessKeyMessage(Message)

处理键盘消息。

(继承自 Control)
ProcessKeyPreview(Message)

预览键盘消息。

(继承自 Control)
ProcessMnemonic(Char)

处理助记字符。

(继承自 Control)
RaiseDragEvent(Object, DragEventArgs)

引发适当的拖动事件。

(继承自 Control)
RaiseKeyEvent(Object, KeyEventArgs)

引发相应的键事件。

(继承自 Control)
RaiseMouseEvent(Object, MouseEventArgs)

引发相应的鼠标事件。

(继承自 Control)
RaisePaintEvent(Object, PaintEventArgs)

引发适当的画图事件。

(继承自 Control)
RecreateHandle()

强制重新创建控件的句柄。

(继承自 Control)
RectangleToClient(Rectangle)

计算客户端坐标中指定屏幕矩形的大小和位置。

(继承自 Control)
RectangleToScreen(Rectangle)

计算屏幕坐标中指定客户端矩形的大小和位置。

(继承自 Control)
Refresh()

强制控件使其工作区失效,并立即重新绘制自身和任何子控件。

(继承自 ListBox)
RefreshItem(Int32)

刷新指定索引处包含的项。

(继承自 ListBox)
RefreshItems()

再次分析所有 CheckedListBox 项,并获取项的新文本字符串。

RescaleConstantsForDpi(Int32, Int32)

提供常量,用于在发生 DPI 更改时重新缩放控件。

(继承自 ListBox)
ResetBackColor()

BackColor 属性重置为其默认值。

(继承自 ListBox)
ResetBindings()

使绑定到 BindingSource 控件的控件重新读取列表中的所有项并刷新其显示的值。

(继承自 Control)
ResetCursor()

Cursor 属性重置为其默认值。

(继承自 Control)
ResetFont()

Font 属性重置为其默认值。

(继承自 Control)
ResetForeColor()

ForeColor 属性重置为其默认值。

(继承自 ListBox)
ResetImeMode()

ImeMode 属性重置为其默认值。

(继承自 Control)
ResetMouseEventArgs()

重置控件以处理 MouseLeave 事件。

(继承自 Control)
ResetRightToLeft()

RightToLeft 属性重置为其默认值。

(继承自 Control)
ResetText()

Text 属性重置为其默认值(Empty)。

(继承自 Control)
ResumeLayout()

恢复通常的布局逻辑。

(继承自 Control)
ResumeLayout(Boolean)

恢复通常的布局逻辑,可以选择强制立即布局挂起的布局请求。

(继承自 Control)
RtlTranslateAlignment(ContentAlignment)

将指定的 ContentAlignment 值转换为适当的 ContentAlignment 值,以支持从右到左的文本。

(继承自 Control)
RtlTranslateAlignment(HorizontalAlignment)

将指定的 HorizontalAlignment 值转换为适当的 HorizontalAlignment 值,以支持从右到左的文本。

(继承自 Control)
RtlTranslateAlignment(LeftRightAlignment)

将指定的 LeftRightAlignment 值转换为适当的 LeftRightAlignment 值,以支持从右到左的文本。

(继承自 Control)
RtlTranslateContent(ContentAlignment)

将指定的 ContentAlignment 值转换为适当的 ContentAlignment 值,以支持从右到左的文本。

(继承自 Control)
RtlTranslateHorizontal(HorizontalAlignment)

将指定的 HorizontalAlignment 值转换为适当的 HorizontalAlignment 值,以支持从右到左的文本。

(继承自 Control)
RtlTranslateLeftRight(LeftRightAlignment)

将指定的 LeftRightAlignment 值转换为适当的 LeftRightAlignment 值,以支持从右到左的文本。

(继承自 Control)
Scale(Single, Single)
已过时.
已过时.

缩放整个控件和任何子控件。

(继承自 Control)
Scale(Single)
已过时.
已过时.

缩放控件和任何子控件。

(继承自 Control)
Scale(SizeF)

按指定的缩放因子缩放控件和所有子控件。

(继承自 Control)
ScaleBitmapLogicalToDevice(Bitmap)

当发生 DPI 更改时,将逻辑位图值缩放为其等效的设备单位值。

(继承自 Control)
ScaleControl(SizeF, BoundsSpecified)

缩放控件的位置、大小、填充和边距。

(继承自 ListBox)
ScaleCore(Single, Single)

此方法与此类无关。

(继承自 Control)
Select()

激活控件。

(继承自 Control)
Select(Boolean, Boolean)

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

(继承自 Control)
SelectNextControl(Control, Boolean, Boolean, Boolean, Boolean)

激活下一个控件。

(继承自 Control)
SendToBack()

将控件发送到 z 顺序的后面。

(继承自 Control)
SetAutoSizeMode(AutoSizeMode)

设置一个值,该值指示控件在启用控件 AutoSize 属性时的行为方式。

(继承自 Control)
SetBounds(Int32, Int32, Int32, Int32, BoundsSpecified)

将控件的指定边界设置为指定的位置和大小。

(继承自 Control)
SetBounds(Int32, Int32, Int32, Int32)

将控件的边界设置为指定的位置和大小。

(继承自 Control)
SetBoundsCore(Int32, Int32, Int32, Int32, BoundsSpecified)

设置控件的 ListBox 指定边界。

(继承自 ListBox)
SetClientSizeCore(Int32, Int32)

设置控件的工作区的大小。

(继承自 Control)
SetItemChecked(Int32, Boolean)

将指定索引处的项集 CheckState 设置为 Checked

SetItemCheckState(Int32, CheckState)

设置指定索引处项的检查状态。

SetItemCore(Int32, Object)

使用派生类中的指定索引设置对象。

(继承自 ListBox)
SetItemsCore(IList)

清除指定项的内容 ListBox ,并将指定的项添加到控件。

(继承自 ListBox)
SetSelected(Int32, Boolean)

选择或清除指定项的 ListBox选定内容。

(继承自 ListBox)
SetStyle(ControlStyles, Boolean)

将指定的 ControlStyles 标志设置为或 truefalse

(继承自 Control)
SetTopLevel(Boolean)

将控件设置为顶级控件。

(继承自 Control)
SetVisibleCore(Boolean)

将控件设置为指定的可见状态。

(继承自 Control)
Show()

向用户显示控件。

(继承自 Control)
SizeFromClientSize(Size)

从工作区的高度和宽度确定整个控件的大小。

(继承自 Control)
Sort()

对 . 中的 ListBox项进行排序

(继承自 ListBox)
SuspendLayout()

暂时挂起控件的布局逻辑。

(继承自 Control)
ToString()

返回一 ListBox个字符串表示形式。

(继承自 ListBox)
Update()

使控件在其工作区内重新绘制无效区域。

(继承自 Control)
UpdateBounds()

使用当前大小和位置更新控件的边界。

(继承自 Control)
UpdateBounds(Int32, Int32, Int32, Int32, Int32, Int32)

使用指定的大小、位置和客户端大小更新控件的边界。

(继承自 Control)
UpdateBounds(Int32, Int32, Int32, Int32)

使用指定的大小和位置更新控件的边界。

(继承自 Control)
UpdateStyles()

强制将分配的样式重新应用于控件。

(继承自 Control)
UpdateZOrder()

按父级的 z 顺序更新控件。

(继承自 Control)
WmReflectCommand(Message)

处理控件从顶级窗口接收的命令消息 CheckedListBox

WndProc(Message)

处理 Windows 消息。

活动

名称 说明
AutoSizeChanged

此事件与此类无关。

(继承自 Control)
BackColorChanged

BackColor 属性的值更改时发生。

(继承自 Control)
BackgroundImageChanged

当标签的属性发生更改时 BackgroundImage 发生。

(继承自 ListBox)
BackgroundImageLayoutChanged

属性 BackgroundImageLayout 更改时发生。

(继承自 ListBox)
BindingContextChanged

BindingContext 属性的值更改时发生。

(继承自 Control)
CausesValidationChanged

CausesValidation 属性的值更改时发生。

(继承自 Control)
ChangeUICues

焦点或键盘用户界面(UI)提示更改时发生。

(继承自 Control)
Click

当用户单击控件 CheckedListBox 时发生。

ClientSizeChanged

ClientSize 属性的值更改时发生。

(继承自 Control)
ContextMenuChanged
已过时.

ContextMenu 属性的值更改时发生。

(继承自 Control)
ContextMenuStripChanged

ContextMenuStrip 属性的值更改时发生。

(继承自 Control)
ControlAdded

将新控件添加到该控件 Control.ControlCollection时发生。

(继承自 Control)
ControlRemoved

从中删除 Control.ControlCollection控件时发生 。

(继承自 Control)
CursorChanged

Cursor 属性的值更改时发生。

(继承自 Control)
DataContextChanged

DataContext 属性的值更改时发生。

(继承自 Control)
DataSourceChanged

属性 DataSource 更改时发生。

DisplayMemberChanged

属性 DisplayMember 更改时发生。

Disposed

当组件通过对方法的调用 Dispose() 释放时发生。

(继承自 Component)
DockChanged

Dock 属性的值更改时发生。

(继承自 Control)
DoubleClick

双击控件时发生。

(继承自 Control)
DpiChangedAfterParent

在控件的父控件或窗体的 DPI 更改后,以编程方式更改控件的 DPI 设置时发生。

(继承自 Control)
DpiChangedBeforeParent

在控件的父控件或窗体发生 DPI 更改事件之前,以编程方式更改控件的 DPI 设置时发生。

(继承自 Control)
DragDrop

完成拖放操作时发生。

(继承自 Control)
DragEnter

当对象被拖动到控件的边界时发生。

(继承自 Control)
DragLeave

当对象被拖出控件的边界时发生。

(继承自 Control)
DragOver

当对象拖动到控件边界上时发生。

(继承自 Control)
DrawItem

当所有者绘制 CheckedListBox 的视觉方面发生更改时发生。 此事件与此类无关。

EnabledChanged

Enabled 属性值更改后发生。

(继承自 Control)
Enter

输入控件时发生。

(继承自 Control)
FontChanged

Font 属性值更改时发生。

(继承自 Control)
ForeColorChanged

ForeColor 属性值更改时发生。

(继承自 Control)
Format

当控件绑定到数据值时发生。

(继承自 ListControl)
FormatInfoChanged

FormatInfo 属性的值更改时发生。

(继承自 ListControl)
FormatStringChanged

当属性的值 FormatString 发生更改时发生。

(继承自 ListControl)
FormattingEnabledChanged

FormattingEnabled 属性的值更改时发生。

(继承自 ListControl)
GiveFeedback

在拖动操作期间发生。

(继承自 Control)
GotFocus

当控件收到焦点时发生。

(继承自 Control)
HandleCreated

为控件创建句柄时发生。

(继承自 Control)
HandleDestroyed

当控件的句柄正在销毁时发生。

(继承自 Control)
HelpRequested

当用户请求控件帮助时发生。

(继承自 Control)
ImeModeChanged

属性 ImeMode 已更改时发生。

(继承自 Control)
Invalidated

当控件的显示需要重绘时发生。

(继承自 Control)
ItemCheck

当项的选中状态更改时发生。

KeyDown

当控件具有焦点时按下键时发生。

(继承自 Control)
KeyPress

当控件具有焦点时按下字符、空格或反空间键时发生。

(继承自 Control)
KeyUp

当控件具有焦点时释放键时发生。

(继承自 Control)
Layout

当控件应重新定位其子控件时发生。

(继承自 Control)
Leave

当输入焦点离开控件时发生。

(继承自 Control)
LocationChanged

Location 属性值更改后发生。

(继承自 Control)
LostFocus

当控件失去焦点时发生。

(继承自 Control)
MarginChanged

当控件的边距更改时发生。

(继承自 Control)
MeasureItem

创建所有者绘制 ListBox 并确定列表项的大小时发生。 此事件与此类无关。

MouseCaptureChanged

当控件失去鼠标捕获时发生。

(继承自 Control)
MouseClick

当用户使用鼠标单击 CheckedListBox 控件时发生。

MouseDoubleClick

在鼠标双击控件时发生。

(继承自 Control)
MouseDown

当鼠标指针位于控件上并按下鼠标按钮时发生。

(继承自 Control)
MouseEnter

当鼠标指针进入控件时发生。

(继承自 Control)
MouseHover

当鼠标指针停留在控件上时发生。

(继承自 Control)
MouseLeave

当鼠标指针离开控件时发生。

(继承自 Control)
MouseMove

当鼠标指针移到控件上时发生。

(继承自 Control)
MouseUp

当鼠标指针位于控件上并释放鼠标按钮时发生。

(继承自 Control)
MouseWheel

当鼠标滚轮在控件具有焦点时移动时发生。

(继承自 Control)
Move

移动控件时发生。

(继承自 Control)
PaddingChanged

Padding 属性的值更改时发生。

(继承自 ListBox)
Paint

绘制控件时 ListBox 发生。

(继承自 ListBox)
ParentChanged

Parent 属性值更改时发生。

(继承自 Control)
PreviewKeyDown

KeyDown 焦点位于此控件上时按下键时,在事件发生之前发生。

(继承自 Control)
QueryAccessibilityHelp

在为辅助功能应用程序提供帮助时 AccessibleObject 发生。

(继承自 Control)
QueryContinueDrag

在拖放操作期间发生,并使拖动源能够确定是否应取消拖放操作。

(继承自 Control)
RegionChanged

Region 属性的值更改时发生。

(继承自 Control)
Resize

调整控件大小时发生。

(继承自 Control)
RightToLeftChanged

RightToLeft 属性值更改时发生。

(继承自 Control)
SelectedIndexChanged

SelectedIndex 属性或 SelectedIndices 集合发生更改时发生。

(继承自 ListBox)
SelectedValueChanged

属性 SelectedValue 更改时发生。

(继承自 ListControl)
SizeChanged

Size 属性值更改时发生。

(继承自 Control)
StyleChanged

当控件样式更改时发生。

(继承自 Control)
SystemColorsChanged

当系统颜色更改时发生。

(继承自 Control)
TabIndexChanged

TabIndex 属性值更改时发生。

(继承自 Control)
TabStopChanged

TabStop 属性值更改时发生。

(继承自 Control)
TextChanged

更改 Text 属性时发生。

(继承自 ListBox)
Validated

在控件完成验证时发生。

(继承自 Control)
Validating

当控件正在验证时发生。

(继承自 Control)
ValueMemberChanged

属性 ValueMember 更改时发生。

VisibleChanged

Visible 属性值更改时发生。

(继承自 Control)

显式接口实现

名称 说明
IDropTarget.OnDragDrop(DragEventArgs)

引发 DragDrop 事件。

(继承自 Control)
IDropTarget.OnDragEnter(DragEventArgs)

引发 DragEnter 事件。

(继承自 Control)
IDropTarget.OnDragLeave(EventArgs)

引发 DragLeave 事件。

(继承自 Control)
IDropTarget.OnDragOver(DragEventArgs)

引发 DragOver 事件。

(继承自 Control)

适用于

另请参阅