ShutdownEventHandler 委托

定义

表示用来处理 My.Application.Shutdown 事件的方法。

public delegate void ShutdownEventHandler(System::Object ^ sender, EventArgs ^ e);
public delegate void ShutdownEventHandler(object sender, EventArgs e);
type ShutdownEventHandler = delegate of obj * EventArgs -> unit
Public Delegate Sub ShutdownEventHandler(sender As Object, e As EventArgs)

参数

sender
Object

事件源。

e
EventArgs

包含事件数据的 EventArgs 对象。

示例

WindowsFormsApplicationBase.Shutdown

Visual Basic 应用程序模型概述

注解

在 Visual Basic 中,无需显式使用此委托。 有关详细信息,请参阅 Shutdown

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于