Control.OnMove メソッド
Move イベントを発生させます。
Protected Overridable Sub OnMove( _
ByVal e As EventArgs _)
[C#]
protected virtual void OnMove(EventArgse);
[C++]
protected: virtual void OnMove(EventArgs* e);
[JScript]
protected function OnMove(
e : EventArgs);
パラメータ
- e
イベント データを格納している EventArgs 。
解説
イベントが発生すると、デリゲートを使用してイベント ハンドラが呼び出されます。詳細については、「 イベントの発生 」を参照してください。
OnMove メソッドを使用すると、デリゲートを結び付けずに、派生クラスでイベントを処理することもできます。派生クラスでイベントを処理する場合は、この手法をお勧めします。
継承時の注意: 派生クラスで OnMove をオーバーライドする場合は、登録されているデリゲートがイベントを受け取ることができるように、基本クラスの OnMove メソッドを呼び出してください。
使用例
' The following example displays the location of the form in screen coordinates
' on the caption bar of the form.
Private Sub Form1_Move(sender As Object, e As System.EventArgs) Handles MyBase.Move
Me.Text = "Form screen position = " + Me.Location.ToString()
End Sub
[C#]
// The following example displays the location of the form in screen coordinates
// on the caption bar of the form.
private void Form1_Move(object sender, System.EventArgs e)
{
this.Text = "Form screen position = " + this.Location.ToString();
}
[C++]
// The following example displays the location of the form in screen coordinates
// on the caption bar of the form.
private:
void Form1_Move(Object* /*sender*/, System::EventArgs* /*e*/)
{
this->Text = String::Format( S"Form screen position = {0}", __box(this->Location));
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
Control クラス | Control メンバ | System.Windows.Forms 名前空間 | Move