Control.Move イベント
コントロールが移動されると発生します。
Public Event Move As EventHandler
[C#]
public event EventHandler Move;
[C++]
public: __event EventHandler* Move;
[JScript] JScript では、このクラスで定義されているイベントを処理できます。ただし、独自に定義することはできません。
イベント データ
イベント ハンドラが EventArgs 型の引数を受け取りました。
解説
イベント処理の詳細については、「 イベントの利用 」を参照してください。
使用例
' 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 名前空間 | OnMove