Control.Move 事件

定義

發生於控制項移動時。

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

事件類型

範例

下列程式碼範例會 Move 使用 事件,在表單標題列的螢幕座標中顯示表單的位置。

   // 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( "Form screen position = {0}", this->Location );
   }
// 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();
}
' 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

備註

如需處理事件的詳細資訊,請參閱 處理和引發事件

適用於

另請參閱