Moở sự kiện load window form

Skip to main content

This browser is no longer supported.

Show

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Form.Load Event

  • Reference

Definition

In this article

Occurs before a form is displayed for the first time.

public:
 event EventHandler ^ Load;
public event EventHandler Load;
public event EventHandler? Load;
member this.Load : EventHandler 
Public Custom Event Load As EventHandler 

Event Type

EventHandler

Examples

The following example demonstrates how to use the SetDesktopLocation, Load, Activated, and Activate members. To run the example, paste the following code in a form called Form1 containing a Button called Button1 and two Label controls called Label1 and 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

Remarks

You can use this event to perform tasks such as allocating resources used by the form.

For more information about handling events, see Handling and Raising Events.

Applies to

See also

  • OnLoad(EventArgs)
  • Close()

Các lớp Biểu mẫu và Điều khiển hiển thị một tập hợp các sự kiện liên quan đến việc khởi động và tắt ứng dụng. Khi ứng dụng Windows Forms khởi động, các sự kiện khởi động của biểu mẫu chính được nêu ra theo thứ tự sau:

Control.HandleCreated
Control.BindingContextChanged
Form.Load
Control.VisibleChanged
Form.Activated
Form.Shown

Khi một ứng dụng đóng, các sự kiện tắt của biểu mẫu chính được nêu ra theo thứ tự sau:

Form.Closing
Form.FormClosing
Form.Closed
Form.FormClosed
Form.Deactivate

Sự kiện Tiêu điểm và Xác thực

Khi bạn thay đổi tiêu điểm bằng cách sử dụng bàn phím (TAB, SHIFT + TAB, v.v.), bằng cách gọi các phương thức Select hoặc SelectNextControl hoặc bằng cách đặt thuộc tính ActiveControl thành biểu mẫu hiện tại, các sự kiện tiêu điểm của lớp Điều khiển xảy ra như sau đặt hàng:

Enter
GotFocus
Leave
Validating
Validated
LostFocus

Khi bạn thay đổi tiêu điểm bằng cách sử dụng chuột hoặc bằng cách gọi phương thức Tiêu điểm, các sự kiện tiêu điểm của lớp Điều khiển xảy ra theo thứ tự sau:

Enter
GotFocus
LostFocus
Leave
Validating
Validated

8 hữu ích 0 bình luận chia sẻ