NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Form.OnMenuComplete

Inheriting classes should override this method to provide user feedback after a menu selection has been completed. This method will be called when the menu selection has been completed, regardless of whether the user selected a menu item, or canceled the selection. This event signifies that the menu modal message loop has been exited.

[Visual Basic]
Overridable Protected Sub OnMenuComplete( _
   ByVal e As EventArgs _
)
[C#]
protected virtual void OnMenuComplete(
   EventArgs e
);
[C++]
protected: virtual void OnMenuComplete(
   EventArgs* e
);
[JScript]
protected function OnMenuComplete(
   e : EventArgs
);

Parameters

e
Event

See Also

Form Class | Form Members | System.WinForms Namespace | OnMenuStart