Form.Closed Zdarzenie

Definicja

Występuje po zamknięciu formularza.

public:
 event EventHandler ^ Closed;
public event EventHandler Closed;
[System.ComponentModel.Browsable(false)]
public event EventHandler Closed;
[System.ComponentModel.Browsable(false)]
public event EventHandler? Closed;
member this.Closed : EventHandler 
[<System.ComponentModel.Browsable(false)>]
member this.Closed : EventHandler 
Public Custom Event Closed As EventHandler 

Typ zdarzenia

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak używać SetDesktopLocationelementów członkowskich , Closed, Load, Activatedi Activate . Aby uruchomić przykład, wklej następujący kod w formularzu o nazwie Form1 zawierającej wywołaną Button i dwie Label kontrolki o nazwie Button1Label1 i Label2.

static int x = 200;
static int y = 200;
void Button1_Click( System::Object^ sender, System::EventArgs^ e )
{
   
   // Create a new Form1 and set its Visible property to true.
   Form1^ form2 = gcnew Form1;
   form2->Visible = true;
   
   // Set the new form's desktop location so it  
   // appears below and to the right of the current form.
   form2->SetDesktopLocation( x, y );
   x += 30;
   y += 30;
   
   // Keep the current form active by calling the Activate
   // method.
   this->Activate();
   this->Button1->Enabled = false;
}


// Updates the label text to reflect the current values of x 
// and y, which was were incremented in the Button1 control's 
// click event.
void Form1_Activated( Object^ sender, System::EventArgs^ e )
{
   Label1->Text = String::Format( "x: {0} y: {1}", x, y );
   Label2->Text = String::Format( "Number of forms currently open: {0}", count );
}

static int count = 0;
void Form1_Closed( Object^ sender, System::EventArgs^ e )
{
   count -= 1;
}

void Form1_Load( Object^ sender, System::EventArgs^ e )
{
   count += 1;
}
static int x = 200;
static int y = 200;

private void Button1_Click(System.Object sender, 
    System.EventArgs e)
{
    // Create a new Form1 and set its Visible property to true.
    Form1 form2 = new Form1();
    form2.Visible = true;

    // Set the new form's desktop location so it  
    // appears below and to the right of the current form.
    form2.SetDesktopLocation(x, y);
    x += 30;
    y += 30;

    // Keep the current form active by calling the Activate
    // method.
    this.Activate();
    this.Button1.Enabled = false;
}

// Updates the label text to reflect the current values of x 
// and y, which was were incremented in the Button1 control's 
// click event.
private void Form1_Activated(object sender, System.EventArgs e)
{
    Label1.Text = "x: "+x+" y: "+y;
    Label2.Text = "Number of forms currently open: "+count;
}

static int count = 0;

private void Form1_Closed(object sender, System.EventArgs e)
{
    count -= 1;
}

private void Form1_Load(object sender, System.EventArgs e)
{
    count += 1;
}
Shared x As Integer = 200
Shared y As Integer = 200

Private Sub Button1_Click(ByVal sender As System.Object, _
    ByVal e As System.EventArgs) Handles Button1.Click

    ' Create a new Form1 and set its Visible property to true.
    Dim form2 As New Form1
    form2.Visible = True

    ' Set the new form's desktop location so it appears below and 
    ' to the right of the current form.
    form2.SetDesktopLocation(x, y)
    x += 30
    y += 30

    ' Keep the current form active by calling the Activate method.
    Me.Activate()
    Me.Button1.Enabled = False
End Sub



' Updates the label text to reflect the current values of x and y, 
' which was were incremented in the Button1 control's click event.
Private Sub Form1_Activated(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles MyBase.Activated
    Label1.Text = "x: " & x & " y: " & y
    Label2.Text = "Number of forms currently open: " & count
End Sub

Shared count As Integer = 0

Private Sub Form1_Closed(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles MyBase.Closed
    count -= 1
End Sub

Private Sub Form1_Load(ByVal sender As Object, _
    ByVal e As System.EventArgs) Handles MyBase.Load
    count += 1
End Sub

Uwagi

Przestroga

Zdarzenie Closed jest przestarzałe w .NET Framework w wersji 2.0; zamiast tego użyj FormClosed zdarzenia.

To zdarzenie występuje po zamknięciu formularza przez użytkownika lub przez Close metodę formularza. Aby zapobiec zamykaniu Closing formularza, obsłuż zdarzenie i ustaw Cancel właściwość przekazanego CancelEventArgs programu obsługi zdarzeń na true.

To zdarzenie służy do wykonywania zadań, takich jak zwalnianie zasobów używanych przez formularz i zapisywanie informacji wprowadzonych w formularzu lub aktualizowanie formularza nadrzędnego.

Przestroga

Zdarzenia Form.Closed i Form.Closing nie są wywoływane, gdy Application.Exit metoda jest wywoływana w celu zamknięcia aplikacji. Jeśli kod weryfikacyjny jest wykonywany w jednym z tych zdarzeń, należy wywołać metodę Form.Close dla każdego otwartego formularza indywidualnie przed wywołaniem Exit metody .

Jeśli formularz jest formularzem nadrzędnym MDI, Closing zdarzenia wszystkich formularzy podrzędnych MDI są zgłaszane przed wystąpieniem zdarzenia formularza Closing nadrzędnego MDI. Ponadto Closed zdarzenia wszystkich formularzy podrzędnych MDI są zgłaszane przed Closed wystąpieniem zdarzenia formularza nadrzędnego MDI.

Aby uzyskać więcej informacji na temat obsługi zdarzeń, zobacz Obsługa i podnoszenie zdarzeń.

Dotyczy

Zobacz też