Form.Closed Olay
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Form kapatıldığında gerçekleşir.
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
Olay Türü
- Öznitelikler
Örnekler
Aşağıdaki örnekte , , Closed, LoadActivatedve Activate üyelerinin nasıl kullanılacağı SetDesktopLocationgösterilmektedir. Örneği çalıştırmak için, aşağıdaki kodu adlı Button1
bir forma ve ve Label2
adlı Form1
Label1
iki Label denetimi içeren bir Button forma yapıştırın.
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
Açıklamalar
Dikkat
OlayClosed, .NET Framework sürüm 2.0'da kullanımdan kaldırıldı; bunun yerine olayı kullanınFormClosed.
Bu olay, form kullanıcı veya formun Close yöntemi tarafından kapatıldıktan sonra gerçekleşir. Formun kapanmasını önlemek için olayı işleyin Closing ve olay işleyicinize geçirilen özelliğini CancelEventArgs olarak true
ayarlayınCancel.
Bu olayı, form tarafından kullanılan kaynakları boşaltma gibi görevleri gerçekleştirmek ve forma girilen bilgileri kaydetmek veya üst formunu güncelleştirmek için kullanabilirsiniz.
Dikkat
Form.Closed uygulamanızdan çıkmak için yöntemi çağrıldığında Application.Exit ve Form.Closing olayları tetiklenmez. Bu olaylardan birinde yürütülmesi gereken doğrulama kodunuz varsa, yöntemini çağırmadan önce her açık form için yöntemini ayrı ayrı çağırmanız Form.CloseExit gerekir.
Form bir MDI üst formuysa, Closing MDI üst formunun olayı tetikilmeden önce tüm MDI alt formlarının Closing olayları tetiklenir. Ayrıca, Closed MDI üst formu olayı tetiklenmeden önce Closed tüm MDI alt formlarının olayları tetiklenir.
Olayları işleme hakkında daha fazla bilgi için bkz. Olayları İşleme ve Oluşturma.