UpdateControllerOnUpdateDialogShowing Method |
Namespace: Kjs.AppLife.Update.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntaxprotected virtual void OnUpdateDialogShowing(
UpdateDialogShowingEventArgs e
)
Protected Overridable Sub OnUpdateDialogShowing (
e As UpdateDialogShowingEventArgs
)
protected:
virtual void OnUpdateDialogShowing(
UpdateDialogShowingEventArgs^ e
)
abstract OnUpdateDialogShowing :
e : UpdateDialogShowingEventArgs -> unit
override OnUpdateDialogShowing :
e : UpdateDialogShowingEventArgs -> unit
Parameters
- e
- Type: Kjs.AppLife.Update.ControllerUpdateDialogShowingEventArgs
The UpdateDialogShowingEventArgs instance containing the event data.
Remarks
Derived classes can override this method to handle the
UpdateDialogShowing
event without attaching a delegate.
When overriding OnUpdateDialogShowing(UpdateDialogShowingEventArgs), be sure to call the base class's
OnUpdateDialogShowing(UpdateDialogShowingEventArgs) method so that the event is raised.
See Also