Application.RegisterMessageLoop(Application+MessageLoopCallback) Method

Definition

Registers a callback for checking whether the message loop is running in hosted environments.

public:
 static void RegisterMessageLoop(System::Windows::Forms::Application::MessageLoopCallback ^ callback);
public static void RegisterMessageLoop (System.Windows.Forms.Application.MessageLoopCallback callback);
public static void RegisterMessageLoop (System.Windows.Forms.Application.MessageLoopCallback? callback);
static member RegisterMessageLoop : System.Windows.Forms.Application.MessageLoopCallback -> unit
Public Shared Sub RegisterMessageLoop (callback As Application.MessageLoopCallback)

Parameters

callback
Application.MessageLoopCallback

The method to call when Windows Forms needs to check if the hosting environment is still sending messages.

Remarks

This method is used when hosting Windows Forms in another environment, such as an unmanaged application. In hosted environments, the MessageLoop property will always return false if Windows Forms is not processing messages. Use this callback to tell Windows Forms if the hosting environment is still processing messages.

Applies to

See also