ListView.ItemActivate 事件

定义

在激活一项时发生。

public:
 event EventHandler ^ ItemActivate;
public event EventHandler ItemActivate;
public event EventHandler? ItemActivate;
member this.ItemActivate : EventHandler 
Public Custom Event ItemActivate As EventHandler 

事件类型

示例

下面的代码示例演示了此成员的用法。 在此示例中,事件处理程序报告事件的发生情况 ItemActivate 。 此报告可帮助你了解事件发生的时间,并可以帮助你进行调试。 若要报告多个事件或频繁发生的事件,请考虑将 MessageBox.ShowConsole.WriteLine 消息替换为 或将消息追加到多行 TextBox

若要运行示例代码,请将其粘贴到包含名为 ListView1的类型的ListView实例的项目中。 然后,确保事件处理程序与 ItemActivate 事件相关联。

private void ListView1_ItemActivate(Object sender, EventArgs e) {

   MessageBox.Show("You are in the ListView.ItemActivate event.");
}
Private Sub ListView1_ItemActivate(sender as Object, e as EventArgs) _ 
     Handles ListView1.ItemActivate

   MessageBox.Show("You are in the ListView.ItemActivate event.")

End Sub

注解

ItemActivate当用户激活 控件中的一个或多个项时,将发生 该ListView事件。 用户可以通过单击或双击激活项,具体取决于 属性的值 Activation ,或者使用键盘激活项。 在 事件的事件处理程序 ItemActivate 中,可以引用 SelectedItemsSelectedIndices 属性来访问 中 ListView 所选项的集合,以确定要激活的项。

有关处理事件的详细信息,请参阅 处理和引发事件

适用于

另请参阅