ListView.ItemActivate 이벤트
항목이 활성될 때 발생합니다.
네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)
구문
‘선언
Public Event ItemActivate As EventHandler
‘사용 방법
Dim instance As ListView
Dim handler As EventHandler
AddHandler instance.ItemActivate, handler
public event EventHandler ItemActivate
public:
event EventHandler^ ItemActivate {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
/** @event */
public void add_ItemActivate (EventHandler value)
/** @event */
public void remove_ItemActivate (EventHandler value)
JScript에서는 이벤트를 사용할 수 있지만 새로 선언할 수는 없습니다.
설명
ItemActivate 이벤트는 사용자가 ListView 컨트롤에서 하나 이상의 항목을 활성시킬 때 발생합니다. 사용자는 Activation 속성의 값에 따라 한 번 클릭하거나 두 번 클릭하여 또는 키보드를 사용하여 항목을 활성시킬 수 있습니다. ItemActivate 이벤트에 대한 이벤트 처리기내에서 SelectedItems 또는 SelectedIndices 속성을 참조하여 활성되고 있는 항목을 파악하기 위해 ListView에서 선택한 항목의 컬렉션에 액세스할 수 있습니다.
이벤트 처리에 대한 자세한 내용은 이벤트 사용을 참조하십시오.
플랫폼
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
2.0, 1.1, 1.0에서 지원
.NET Compact Framework
2.0, 1.0에서 지원
참고 항목
참조
ListView 클래스
ListView 멤버
System.Windows.Forms 네임스페이스
OnItemActivate
EventHandler
ListView.Activation 속성
ListView.SelectedItems 속성
ListView.SelectedIndices 속성