iPhoneOSGameView.OnLoad(EventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises the Load event.
protected virtual void OnLoad(EventArgs e);
abstract member OnLoad : EventArgs -> unit
override this.OnLoad : EventArgs -> unit
Parameters
An T:System.EventArgs that contains the event data.
Remarks
The OnLoad method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
<block subset="none" type="overrides"> When overriding OnLoad in a derived class, be sure to call the base class's OnLoad method so that registered delegates receive the event. </block>