Form.Activate メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
フォームをアクティブにし、そのフォームにフォーカスを移します。
public:
void Activate();
public void Activate ();
member this.Activate : unit -> unit
Public Sub Activate ()
例
次の例では、 メンバーLoad、および Activate メンバーの使用方法をSetDesktopLocation示します。 この例を実行するには、 という名前のボタンButton1
と と という Form1
2 つのLabel
コントロールを含む というフォームに次のコードをLabel1
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
注釈
アクティブなアプリケーションの場合はフォームを前面に表示するか、アクティブなアプリケーションでない場合はウィンドウキャプションが点滅します。 このメソッドを有効にするには、フォームが表示されている必要があります。 アプリケーションでアクティブなフォームを確認するには、フォームが ActiveForm 複数ドキュメント インターフェイス (MDI) アプリケーションにある場合は、 プロパティまたは ActiveMdiChild プロパティを使用します。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET