ApplicationContext.ExitThread 方法

定义

终止线程的消息循环。

public:
 void ExitThread();
public void ExitThread ();
member this.ExitThread : unit -> unit
Public Sub ExitThread ()

示例

下面的代码示例是类概述中示例的 ApplicationContext 摘录。 此示例跟踪打开的窗体,并在关闭所有窗体时退出当前线程。 方法 OnFormClosed 是 事件的事件处理程序 Closed 。 当打开的窗体数等于 0 时,则通过调用 ExitThread 方法退出当前线程。 通过在显示窗体时递增 formCount 变量,并在窗体关闭时递减该变量来跟踪窗体的数量。

为了简洁起见,未显示某些代码。 有关整个代码列表,请参阅 ApplicationContext

void OnFormClosed( Object^ /*sender*/, EventArgs^ /*e*/ )
{
   
   // When a form is closed, decrement the count of open forms.
   // When the count gets to 0, exit the app by calling
   // ExitThread().
   _formCount--;
   if ( _formCount == 0 )
   {
      ExitThread();
   }
}
private void OnFormClosed(object sender, EventArgs e)
{
    // When a form is closed, decrement the count of open forms.

    // When the count gets to 0, exit the app by calling
    // ExitThread().
    _formCount--;
    if (_formCount == 0)
    {
        ExitThread();
    }
}
Private Sub OnFormClosed(ByVal sender As Object, ByVal e As EventArgs)
    ' When a form is closed, decrement the count of open forms.

    ' When the count gets to 0, exit the app by calling
    ' ExitThread().
    _formCount = _formCount - 1
    If (_formCount = 0) Then
        ExitThread()
    End If
End Sub

注解

此方法调用 ExitThreadCore

备注

ExitThreadExitThreadCore 实际上不会导致线程终止。 这些方法引发 ThreadExit 对象侦听的事件 Application 。 然后, 对象 Application 终止线程。

适用于