StartupEventHandler 委托

定义

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

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

参数

sender
Object

事件源。

e
StartupEventArgs

包含事件数据的 StartupEventArgs 对象。

示例

WindowsFormsApplicationBase.Startup

Visual Basic 应用程序模型概述

注解

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

扩展方法

GetMethodInfo(Delegate)

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

适用于