SettingsLoadedEventHandler 委托
定义
表示用来处理 SettingsLoaded 事件的方法。Represents the method that will handle the SettingsLoaded event.
public delegate void SettingsLoadedEventHandler(System::Object ^ sender, SettingsLoadedEventArgs ^ e);
public delegate void SettingsLoadedEventHandler(object sender, SettingsLoadedEventArgs e);
type SettingsLoadedEventHandler = delegate of obj * SettingsLoadedEventArgs -> unit
Public Delegate Sub SettingsLoadedEventHandler(sender As Object, e As SettingsLoadedEventArgs)
参数
- sender
- Object
事件的源,通常为设置类。The source of the event, typically the settings class.
包含事件数据的 SettingsLoadedEventArgs 对象。A SettingsLoadedEventArgs object that contains the event data.
- 继承
注解
SettingsLoaded从提供程序检索设置时发生此事件。The SettingsLoaded event occurs when settings are retrieved from a provider. 为每个提供程序激发一次此事件。This event fires once for each provider.
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。Gets an object that represents the method represented by the specified delegate. |