CheckedListBox 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
각 항목의 왼쪽에 확인란이 있는 ListBox를 표시합니다.
public ref class CheckedListBox : System::Windows::Forms::ListBox
public class CheckedListBox : System.Windows.Forms.ListBox
[System.ComponentModel.LookupBindingProperties]
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class CheckedListBox : System.Windows.Forms.ListBox
[System.ComponentModel.LookupBindingProperties]
public class CheckedListBox : System.Windows.Forms.ListBox
type CheckedListBox = class
inherit ListBox
[<System.ComponentModel.LookupBindingProperties>]
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type CheckedListBox = class
inherit ListBox
[<System.ComponentModel.LookupBindingProperties>]
type CheckedListBox = class
inherit ListBox
Public Class CheckedListBox
Inherits ListBox
- 상속
- 특성
예제
다음 예제에서는 의 메서드, 속성 및 컬렉션을 사용하는 방법을 보여 줍니다 CheckedListBox. 프로젝트에 복사한 후 실행할 준비가 된 전체 샘플입니다. 항목을 검사 선택 취소하고, 텍스트 상자를 사용하여 항목을 추가하고, 저장 단추를 클릭하면 선택한 항목의 선택을 취소할 수 있습니다.
#using <System.Data.dll>
#using <System.Windows.Forms.dll>
#using <System.dll>
#using <System.Drawing.dll>
using namespace System;
using namespace System::Drawing;
using namespace System::Collections;
using namespace System::ComponentModel;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::IO;
public ref class Form1: public System::Windows::Forms::Form
{
private:
System::Windows::Forms::CheckedListBox^ checkedListBox1;
System::Windows::Forms::TextBox^ textBox1;
System::Windows::Forms::Button^ button1;
System::Windows::Forms::Button^ button2;
System::Windows::Forms::ListBox^ listBox1;
System::Windows::Forms::Button^ button3;
System::ComponentModel::Container^ components;
public:
Form1()
{
InitializeComponent();
// Sets up the initial objects in the CheckedListBox.
array<String^>^myFruit = {"Apples","Oranges","Tomato"};
checkedListBox1->Items->AddRange( myFruit );
// Changes the selection mode from double-click to single click.
checkedListBox1->CheckOnClick = true;
}
public:
~Form1()
{
if ( components != nullptr )
{
delete components;
}
}
private:
void InitializeComponent()
{
this->components = gcnew System::ComponentModel::Container;
this->textBox1 = gcnew System::Windows::Forms::TextBox;
this->checkedListBox1 = gcnew System::Windows::Forms::CheckedListBox;
this->listBox1 = gcnew System::Windows::Forms::ListBox;
this->button1 = gcnew System::Windows::Forms::Button;
this->button2 = gcnew System::Windows::Forms::Button;
this->button3 = gcnew System::Windows::Forms::Button;
this->textBox1->Location = System::Drawing::Point( 144, 64 );
this->textBox1->Size = System::Drawing::Size( 128, 20 );
this->textBox1->TabIndex = 1;
this->textBox1->TextChanged += gcnew System::EventHandler( this, &Form1::textBox1_TextChanged );
this->checkedListBox1->Location = System::Drawing::Point( 16, 64 );
this->checkedListBox1->Size = System::Drawing::Size( 120, 184 );
this->checkedListBox1->TabIndex = 0;
this->checkedListBox1->ItemCheck += gcnew System::Windows::Forms::ItemCheckEventHandler( this, &Form1::checkedListBox1_ItemCheck );
this->listBox1->Location = System::Drawing::Point( 408, 64 );
this->listBox1->Size = System::Drawing::Size( 128, 186 );
this->listBox1->TabIndex = 3;
this->button1->Enabled = false;
this->button1->Location = System::Drawing::Point( 144, 104 );
this->button1->Size = System::Drawing::Size( 104, 32 );
this->button1->TabIndex = 2;
this->button1->Text = "Add Fruit";
this->button1->Click += gcnew System::EventHandler( this, &Form1::button1_Click );
this->button2->Enabled = false;
this->button2->Location = System::Drawing::Point( 288, 64 );
this->button2->Size = System::Drawing::Size( 104, 32 );
this->button2->TabIndex = 2;
this->button2->Text = "Show Order";
this->button2->Click += gcnew System::EventHandler( this, &Form1::button2_Click );
this->button3->Enabled = false;
this->button3->Location = System::Drawing::Point( 288, 104 );
this->button3->Size = System::Drawing::Size( 104, 32 );
this->button3->TabIndex = 2;
this->button3->Text = "Save Order";
this->button3->Click += gcnew System::EventHandler( this, &Form1::button3_Click );
this->ClientSize = System::Drawing::Size( 563, 273 );
array<System::Windows::Forms::Control^>^temp0 = {this->listBox1,this->button3,this->button2,this->button1,this->textBox1,this->checkedListBox1};
this->Controls->AddRange( temp0 );
this->Text = "Fruit Order";
}
// Adds the string if the text box has data in it.
void button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( !textBox1->Text->Equals( "" ) )
{
if ( checkedListBox1->CheckedItems->Contains( textBox1->Text ) == false )
checkedListBox1->Items->Add( textBox1->Text, CheckState::Checked );
textBox1->Text = "";
}
}
// Activates or deactivates the Add button.
void textBox1_TextChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( textBox1->Text->Equals( "" ) )
{
button1->Enabled = false;
}
else
{
button1->Enabled = true;
}
}
// Moves the checked items from the CheckedListBox to the listBox.
void button2_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
listBox1->Items->Clear();
button3->Enabled = false;
for ( int i = 0; i < checkedListBox1->CheckedItems->Count; i++ )
{
listBox1->Items->Add( checkedListBox1->CheckedItems[ i ] );
}
if ( listBox1->Items->Count > 0 )
button3->Enabled = true;
}
// Activates the move button if there are checked items.
void checkedListBox1_ItemCheck( Object^ /*sender*/, ItemCheckEventArgs^ e )
{
if ( e->NewValue == CheckState::Unchecked )
{
if ( checkedListBox1->CheckedItems->Count == 1 )
{
button2->Enabled = false;
}
}
else
{
button2->Enabled = true;
}
}
// Saves the items to a file.
void button3_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
// Insert code to save a file.
listBox1->Items->Clear();
IEnumerator^ myEnumerator;
myEnumerator = checkedListBox1->CheckedIndices->GetEnumerator();
int y;
while ( myEnumerator->MoveNext() != false )
{
y = safe_cast<Int32>(myEnumerator->Current);
checkedListBox1->SetItemChecked( y, false );
}
button3->Enabled = false;
}
};
[STAThread]
int main()
{
Application::Run( gcnew Form1 );
}
namespace WindowsApplication1
{
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO ;
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.CheckedListBox checkedListBox1;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button button3;
private System.ComponentModel.Container components;
public Form1()
{
InitializeComponent();
// Sets up the initial objects in the CheckedListBox.
string[] myFruit = {"Apples", "Oranges","Tomato"};
checkedListBox1.Items.AddRange(myFruit);
// Changes the selection mode from double-click to single click.
checkedListBox1.CheckOnClick = true;
}
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.textBox1 = new System.Windows.Forms.TextBox();
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.button3 = new System.Windows.Forms.Button();
this.textBox1.Location = new System.Drawing.Point(144, 64);
this.textBox1.Size = new System.Drawing.Size(128, 20);
this.textBox1.TabIndex = 1;
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
this.checkedListBox1.Location = new System.Drawing.Point(16, 64);
this.checkedListBox1.Size = new System.Drawing.Size(120, 184);
this.checkedListBox1.TabIndex = 0;
this.checkedListBox1.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.checkedListBox1_ItemCheck);
this.listBox1.Location = new System.Drawing.Point(408, 64);
this.listBox1.Size = new System.Drawing.Size(128, 186);
this.listBox1.TabIndex = 3;
this.button1.Enabled = false;
this.button1.Location = new System.Drawing.Point(144, 104);
this.button1.Size = new System.Drawing.Size(104, 32);
this.button1.TabIndex = 2;
this.button1.Text = "Add Fruit";
this.button1.Click += new System.EventHandler(this.button1_Click);
this.button2.Enabled = false;
this.button2.Location = new System.Drawing.Point(288, 64);
this.button2.Size = new System.Drawing.Size(104, 32);
this.button2.TabIndex = 2;
this.button2.Text = "Show Order";
this.button2.Click += new System.EventHandler(this.button2_Click);
this.button3.Enabled = false;
this.button3.Location = new System.Drawing.Point(288, 104);
this.button3.Size = new System.Drawing.Size(104, 32);
this.button3.TabIndex = 2;
this.button3.Text = "Save Order";
this.button3.Click += new System.EventHandler(this.button3_Click);
this.ClientSize = new System.Drawing.Size(563, 273);
this.Controls.AddRange(new System.Windows.Forms.Control[] {this.listBox1,
this.button3,
this.button2,
this.button1,
this.textBox1,
this.checkedListBox1});
this.Text = "Fruit Order";
}
[STAThread]
public static void Main(string[] args)
{
Application.Run(new Form1());
}
// Adds the string if the text box has data in it.
private void button1_Click(object sender, System.EventArgs e)
{
if(textBox1.Text != "")
{
if(checkedListBox1.CheckedItems.Contains(textBox1.Text)== false)
checkedListBox1.Items.Add(textBox1.Text,CheckState.Checked);
textBox1.Text = "";
}
}
// Activates or deactivates the Add button.
private void textBox1_TextChanged(object sender, System.EventArgs e)
{
if (textBox1.Text == "")
{
button1.Enabled = false;
}
else
{
button1.Enabled = true;
}
}
// Moves the checked items from the CheckedListBox to the listBox.
private void button2_Click(object sender, System.EventArgs e)
{
listBox1.Items.Clear();
button3.Enabled=false;
for (int i=0; i< checkedListBox1.CheckedItems.Count;i++)
{
listBox1.Items.Add(checkedListBox1.CheckedItems[i]);
}
if (listBox1.Items.Count>0)
button3.Enabled=true;
}
// Activates the move button if there are checked items.
private void checkedListBox1_ItemCheck(object sender, ItemCheckEventArgs e)
{
if(e.NewValue==CheckState.Unchecked)
{
if(checkedListBox1.CheckedItems.Count==1)
{
button2.Enabled = false;
}
}
else
{
button2.Enabled = true;
}
}
// Saves the items to a file.
private void button3_Click(object sender, System.EventArgs e)
{
// Insert code to save a file.
listBox1.Items.Clear();
IEnumerator myEnumerator;
myEnumerator = checkedListBox1.CheckedIndices.GetEnumerator();
int y;
while (myEnumerator.MoveNext() != false)
{
y =(int) myEnumerator.Current;
checkedListBox1.SetItemChecked(y, false);
}
button3.Enabled = false ;
}
}
}
Option Explicit
Option Strict
Imports System.Drawing
Imports System.Collections
Imports System.ComponentModel
Imports System.Windows.Forms
Imports System.Data
Imports System.IO
Namespace WindowsApplication1
Public Class Form1
Inherits System.Windows.Forms.Form
Private WithEvents checkedListBox1 As System.Windows.Forms.CheckedListBox
Private WithEvents textBox1 As System.Windows.Forms.TextBox
Private WithEvents button1 As System.Windows.Forms.Button
Private WithEvents button2 As System.Windows.Forms.Button
Private WithEvents listBox1 As System.Windows.Forms.ListBox
Private WithEvents button3 As System.Windows.Forms.Button
Private components As System.ComponentModel.Container
Public Sub New()
InitializeComponent()
' Sets up the initial objects in the CheckedListBox.
Dim myFruit As String() = {"Apples", "Oranges", "Tomato"}
checkedListBox1.Items.AddRange(myFruit)
' Changes the selection mode from double-click to single click.
checkedListBox1.CheckOnClick = True
End Sub
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If (components IsNot Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.textBox1 = New System.Windows.Forms.TextBox()
Me.checkedListBox1 = New System.Windows.Forms.CheckedListBox()
Me.listBox1 = New System.Windows.Forms.ListBox()
Me.button1 = New System.Windows.Forms.Button()
Me.button2 = New System.Windows.Forms.Button()
Me.button3 = New System.Windows.Forms.Button()
Me.textBox1.Location = New System.Drawing.Point(144, 64)
Me.textBox1.Size = New System.Drawing.Size(128, 20)
Me.textBox1.TabIndex = 1
Me.checkedListBox1.Location = New System.Drawing.Point(16, 64)
Me.checkedListBox1.Size = New System.Drawing.Size(120, 184)
Me.checkedListBox1.TabIndex = 0
Me.listBox1.Location = New System.Drawing.Point(408, 64)
Me.listBox1.Size = New System.Drawing.Size(128, 186)
Me.listBox1.TabIndex = 3
Me.button1.Enabled = False
Me.button1.Location = New System.Drawing.Point(144, 104)
Me.button1.Size = New System.Drawing.Size(104, 32)
Me.button1.TabIndex = 2
Me.button1.Text = "Add Fruit"
Me.button2.Enabled = False
Me.button2.Location = New System.Drawing.Point(288, 64)
Me.button2.Size = New System.Drawing.Size(104, 32)
Me.button2.TabIndex = 2
Me.button2.Text = "Show Order"
Me.button3.Enabled = False
Me.button3.Location = New System.Drawing.Point(288, 104)
Me.button3.Size = New System.Drawing.Size(104, 32)
Me.button3.TabIndex = 2
Me.button3.Text = "Save Order"
Me.ClientSize = New System.Drawing.Size(563, 273)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.listBox1, Me.button3, Me.button2, Me.button1, Me.textBox1, Me.checkedListBox1})
Me.Text = "Fruit Order"
End Sub
<STAThread()> _
Public Shared Sub Main()
Application.Run(New Form1())
End Sub
' Adds the string if the text box has data in it.
Private Sub button1_Click(sender As Object, _
e As System.EventArgs) Handles button1.Click
If textBox1.Text <> "" Then
If checkedListBox1.CheckedItems.Contains(textBox1.Text) = False Then
checkedListBox1.Items.Add(textBox1.Text, CheckState.Checked)
End If
textBox1.Text = ""
End If
End Sub
' Activates or deactivates the Add button.
Private Sub textBox1_TextChanged(sender As Object, _
e As System.EventArgs) Handles textBox1.TextChanged
If textBox1.Text = "" Then
button1.Enabled = False
Else
button1.Enabled = True
End If
End Sub
' Moves the checked items from the CheckedListBox to the listBox.
Private Sub button2_Click(sender As Object, _
e As System.EventArgs) Handles button2.Click
listBox1.Items.Clear()
button3.Enabled = False
Dim i As Integer
For i = 0 To checkedListBox1.CheckedItems.Count - 1
listBox1.Items.Add(checkedListBox1.CheckedItems(i))
Next i
If listBox1.Items.Count > 0 Then
button3.Enabled = True
End If
End Sub
' Activates the move button if there are checked items.
Private Sub checkedListBox1_ItemCheck(sender As Object, _
e As ItemCheckEventArgs) Handles checkedListBox1.ItemCheck
If e.NewValue = CheckState.Unchecked Then
If checkedListBox1.CheckedItems.Count = 1 Then
button2.Enabled = False
End If
Else
button2.Enabled = True
End If
End Sub
' Saves the items to a file.
Private Sub button3_Click(sender As Object, _
e As System.EventArgs) Handles button3.Click
' Insert code to save a file.
listBox1.Items.Clear()
For Each index in checkedListBox1.CheckedIndices.Cast(Of Integer).ToArray()
checkedListBox1.SetItemChecked(index, False)
Next
button3.Enabled = False
End Sub
End Class
End Namespace 'WindowsApplication1
설명
이 컨트롤은 사용자가 키보드 또는 컨트롤의 오른쪽에 있는 스크롤 막대를 사용하여 탐색할 수 있는 항목 목록을 표시합니다. 사용자는 하나 이상의 항목으로 검사 표시를 배치할 수 있으며 및 를 사용하여 확인된 항목을 탐색 CheckedListBox.CheckedItemCollectionCheckedListBox.CheckedIndexCollection할 수 있습니다.
런타임에 목록에 개체를 추가하려면 메서드를 사용하여 개체 참조 배열을 AddRange 할당합니다. 그러면 목록에 각 개체의 기본 문자열 값이 표시됩니다. 메서드를 사용하여 목록에 Add 개별 항목을 추가할 수 있습니다.
개체는 CheckedListBox 열거형CheckedIndeterminate을 CheckState 통해 , 및 Unchecked의 세 가지 상태를 지원합니다. 의 사용자 인터페이스 CheckedListBox 가 이를 수행하는 메커니즘을 제공하지 않으므로 코드에서 의 상태를 Indeterminate 설정해야 합니다.
이 이true
면 UseTabStops 는 CheckedListBox 항목의 텍스트에서 탭 문자를 인식하고 확장하여 열을 만듭니다. 이러한 탭 정지는 미리 설정되며 변경할 수 없습니다. 사용자 지정 탭 정지를 사용하려면 를 로 false
설정하고 UseTabStops 를 로 true
설정하고 UseCustomTabOffsets 컬렉션에 사용자 지정 값을 CustomTabOffsets 추가합니다.
참고
속성이 이 UseCompatibleTextRendering 면 속성이 CustomTabOffsets 무시되고 표준 탭 오프셋으로 바뀝false
니다.
클래스는 CheckedListBox 다음과 같은 세 가지 인덱싱된 컬렉션을 지원합니다.
컬렉션 | 캡슐화 클래스 |
---|---|
컨트롤에 포함된 모든 항목입니다 CheckedListBox . | CheckedListBox.ObjectCollection |
컨트롤에 포함된 항목의 하위 집합인 항목(확정되지 않은 상태의 항목 포함)을 CheckedListBox 확인했습니다. | CheckedListBox.CheckedItemCollection |
항목 컬렉션에 대한 인덱스의 하위 집합인 인덱스를 확인했습니다. 이러한 인덱스는 선택되거나 확정되지 않은 상태로 항목을 지정합니다. | CheckedListBox.CheckedIndexCollection |
다음 세 개의 테이블은 클래스가 지원하는 세 개의 인덱싱된 컬렉션의 CheckedListBox 예입니다.
첫 번째 테이블은 컨트롤에 있는 항목의 인덱싱된 컬렉션(컨트롤에 포함된 모든 항목)의 예를 제공합니다.
인덱스 | 항목 | 상태 확인 |
---|---|---|
0 | Object 1 | Unchecked |
1 | Object 2 | Checked |
2 | 개체 3 | Unchecked |
3 | 개체 4 | Indeterminate |
4 | 개체 5 | Checked |
두 번째 테이블은 확인된 항목의 인덱싱된 컬렉션의 예를 제공합니다.
인덱스 | 항목 |
---|---|
0 | Object 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 |
ListBox 열거형에 정의된 대로 ImageLayout의 배경 이미지 레이아웃을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
BindingContext |
컨트롤의 BindingContext를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
BorderStyle |
ListBox에 그려진 테두리의 형식을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
Bottom |
컨트롤의 아래쪽 가장자리와 해당 컨테이너 클라이언트 영역의 위쪽 가장자리 사이의 거리(픽셀)를 가져옵니다. (다음에서 상속됨 Control) |
Bounds |
부모 컨트롤을 기준으로 비클라이언트 요소를 포함하는 컨트롤의 크기와 위치(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
CanEnableIme |
IME 지원을 사용하도록 ImeMode 속성을 활성 값으로 설정할 수 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 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의 안쪽 여백을 가져오거나 설정합니다. 이 속성은 이 클래스와 관련이 없습니다. |
Padding |
이 속성은 이 클래스와 관련이 없습니다. (다음에서 상속됨 ListBox) |
Parent |
컨트롤의 부모 컨테이너를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
PreferredHeight |
ListBox에 있는 모든 항목의 전체 높이를 가져옵니다. (다음에서 상속됨 ListBox) |
PreferredSize |
컨트롤이 들어갈 수 있는 사각형 영역의 크기를 가져옵니다. (다음에서 상속됨 Control) |
ProductName |
컨트롤이 포함된 어셈블리의 제품 이름을 가져옵니다. (다음에서 상속됨 Control) |
ProductVersion |
컨트롤이 포함된 어셈블리의 버전을 가져옵니다. (다음에서 상속됨 Control) |
RecreatingHandle |
컨트롤이 현재 자신의 핸들을 다시 만들고 있는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Region |
컨트롤과 연결된 창 영역을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
RenderRightToLeft |
사용되지 않음.
사용되지 않음.
이 속성은 더 이상 사용되지 않습니다. (다음에서 상속됨 Control) |
ResizeRedraw |
크기를 조정하는 경우 컨트롤이 자신을 다시 그리는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Right |
컨트롤의 오른쪽 가장자리와 해당 컨테이너 클라이언트 영역의 왼쪽 가장자리 사이의 거리(픽셀)를 가져옵니다. (다음에서 상속됨 Control) |
RightToLeft |
컨트롤의 텍스트가 오른쪽에서 왼쪽으로 표시되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
ScaleChildren |
자식 컨트롤의 배율을 결정하는 값을 가져옵니다. (다음에서 상속됨 Control) |
ScrollAlwaysVisible |
항상 세로 스크롤 막대가 표시되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
SelectedIndex |
ListBox에서 현재 선택되어 있는 항목의 인덱스(0부터 시작)를 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
SelectedIndices |
ListBox에서 현재 선택되어 있는 모든 항목의 인덱스(0부터 시작)가 들어 있는 컬렉션을 가져옵니다. (다음에서 상속됨 ListBox) |
SelectedItem |
ListBox에서 현재 선택되어 있는 항목을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
SelectedItems |
ListBox에서 현재 선택되어 있는 항목을 포함하는 컬렉션을 가져옵니다. (다음에서 상속됨 ListBox) |
SelectedValue |
ValueMember 속성이 지정한 멤버 속성의 값을 가져오거나 설정합니다. (다음에서 상속됨 ListControl) |
SelectionMode |
선택 모드를 지정하는 값을 가져오거나 설정합니다. |
ShowFocusCues |
컨트롤이 포커스 영역을 표시할지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
ShowKeyboardCues |
사용자 인터페이스가 키보드 액셀러레이터 키를 표시하는지 아니면 숨기는지를 나타내는 값을 가져옵니다. (다음에서 상속됨 Control) |
Site |
컨트롤의 사이트를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Size |
컨트롤의 높이와 너비를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Sorted |
ListBox의 항목이 사전순으로 정렬되는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
TabIndex |
컨트롤 컨테이너 내의 컨트롤 탭 순서를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TabStop |
Tab 키를 사용하여 이 컨트롤의 포커스를 이동할 수 있는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Tag |
컨트롤에 대한 데이터가 포함된 개체를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Text |
ListBox에서 현재 선택되어 있는 항목의 텍스트를 가져오거나 검색합니다. (다음에서 상속됨 ListBox) |
ThreeDCheckBoxes |
확인란에 |
Top |
컨트롤의 위쪽 가장자리와 해당 컨테이너 클라이언트 영역의 위쪽 가장자리 사이의 거리(픽셀)를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
TopIndex |
ListBox에서 가장 먼저 표시되는 항목의 인덱스를 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
TopLevelControl |
다른 Windows Forms 컨트롤에 의해 부모로 지정될 수 없는 부모 컨트롤을 가져옵니다. 일반적으로 이것은 컨트롤이 포함된 가장 바깥쪽 Form입니다. (다음에서 상속됨 Control) |
UseCompatibleTextRendering |
클래스(GDI+) 또는 GDI(클래스)를 사용하여 Graphics 텍스트를 렌더링할지 여부를 결정하는 값을 가져오거나 TextRenderer 설정합니다. |
UseCustomTabOffsets |
ListBox가 CustomTabOffsets 정수 배열을 사용하여 문자열을 그릴 때 탭 문자를 인식하고 확장하는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
UseTabStops |
ListBox에서 해당 문자열을 그릴 때 탭 문자를 인식하고 확장할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ListBox) |
UseWaitCursor |
현재 컨트롤과 모든 자식 컨트롤에 대기 커서를 사용할지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
ValueMember |
값을 가져올 데이터 소스의 속성을 지정하는 문자열을 가져오거나 설정합니다. |
Visible |
컨트롤과 모든 해당 자식 컨트롤이 표시되는지를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 Control) |
Width |
컨트롤의 너비를 가져오거나 설정합니다. (다음에서 상속됨 Control) |
WindowTarget |
이 속성은 이 클래스와 관련이 없습니다. (다음에서 상속됨 Control) |
메서드
이벤트
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 컨트롤을 클릭할 때 발생합니다. |
MouseClick |
사용자가 마우스 포인터로 ListBox 컨트롤을 클릭할 때 발생합니다. (다음에서 상속됨 ListBox) |
MouseDoubleClick |
컨트롤을 마우스로 두 번 클릭할 때 발생합니다. (다음에서 상속됨 Control) |
MouseDown |
마우스 포인터가 컨트롤 위에 있을 때 마우스 단추를 클릭하면 발생합니다. (다음에서 상속됨 Control) |
MouseEnter |
마우스 포인터가 컨트롤에 들어가면 발생합니다. (다음에서 상속됨 Control) |
MouseHover |
마우스 포인터가 컨트롤 위에 있을 때 발생합니다. (다음에서 상속됨 Control) |
MouseLeave |
마우스 포인터가 컨트롤을 벗어나면 발생합니다. (다음에서 상속됨 Control) |
MouseMove |
마우스 포인터를 컨트롤 위로 이동하면 발생합니다. (다음에서 상속됨 Control) |
MouseUp |
마우스 포인터가 컨트롤 위에 있을 때 마우스 단추를 눌렀다 놓으면 발생합니다. (다음에서 상속됨 Control) |
MouseWheel |
컨트롤에 포커스가 있을 때 마우스 휠을 움직이면 발생합니다. (다음에서 상속됨 Control) |
Move |
컨트롤이 이동하면 발생합니다. (다음에서 상속됨 Control) |
PaddingChanged |
Padding 속성 값이 변경되면 발생합니다. (다음에서 상속됨 ListBox) |
Paint |
ListBox 컨트롤을 그릴 때 발생합니다. (다음에서 상속됨 ListBox) |
ParentChanged |
Parent 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
PreviewKeyDown |
이 컨트롤에 포커스가 있는 동안 키를 누르면 KeyDown 이벤트 전에 발생합니다. (다음에서 상속됨 Control) |
QueryAccessibilityHelp |
AccessibleObject가 내게 필요한 옵션 지원 애플리케이션에 도움말을 제공하면 발생합니다. (다음에서 상속됨 Control) |
QueryContinueDrag |
끌어서 놓기 작업 중에 발생하며 끌기 소스가 끌어서 놓기 작업을 취소해야 할지를 결정하도록 합니다. (다음에서 상속됨 Control) |
RegionChanged |
Region 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
Resize |
컨트롤의 크기를 조정하면 발생합니다. (다음에서 상속됨 Control) |
RightToLeftChanged |
RightToLeft 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
SelectedIndexChanged |
SelectedIndex 속성이나 SelectedIndices 컬렉션이 변경될 때 발생합니다. (다음에서 상속됨 ListBox) |
SelectedValueChanged |
SelectedValue 속성이 변경되면 발생합니다. (다음에서 상속됨 ListControl) |
SizeChanged |
Size 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
StyleChanged |
컨트롤 스타일이 변경되면 발생합니다. (다음에서 상속됨 Control) |
SystemColorsChanged |
시스템 색이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TabIndexChanged |
TabIndex 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TabStopChanged |
TabStop 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
TextChanged |
Text 속성이 변경될 때 발생합니다. (다음에서 상속됨 ListBox) |
Validated |
컨트롤의 유효성 검사가 완료되면 발생합니다. (다음에서 상속됨 Control) |
Validating |
컨트롤의 유효성을 검사할 때 발생합니다. (다음에서 상속됨 Control) |
ValueMemberChanged |
ValueMember 속성이 변경되면 발생합니다. |
VisibleChanged |
Visible 속성 값이 변경되면 발생합니다. (다음에서 상속됨 Control) |
명시적 인터페이스 구현
IDropTarget.OnDragDrop(DragEventArgs) |
DragDrop 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragEnter(DragEventArgs) |
DragEnter 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragLeave(EventArgs) |
DragLeave 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
IDropTarget.OnDragOver(DragEventArgs) |
DragOver 이벤트를 발생시킵니다. (다음에서 상속됨 Control) |
적용 대상
추가 정보
.NET