Cursor.Handle Свойство

Определение

Возвращает дескриптор курсора.

public:
 property IntPtr Handle { IntPtr get(); };
public IntPtr Handle { get; }
member this.Handle : nativeint
Public ReadOnly Property Handle As IntPtr

Значение свойства

IntPtr

nativeint

Указатель IntPtr, представляющий дескриптор курсора.

Исключения

Значение дескриптора равно Zero.

Примеры

В следующем примере кода создается курсор на основе Current курсора Handle, который изменяет его положение и прямоугольник обрезки. В результате курсор будет перемещаться вверх и влево на 50 пикселей от того места, где он находится при выполнении кода. Кроме того, прямоугольник обрезки курсора меняется на границы формы (по умолчанию это весь экран пользователя). В этом примере требуется, Form чтобы и вызывали Button этот код при щелчке.

void MoveCursor()
{
   // Set the Current cursor, move the cursor's Position,
   // and set its clipping rectangle to the form.

   this->Cursor = gcnew System::Windows::Forms::Cursor( ::Cursor::Current->Handle );
   ::Cursor::Position = Point(::Cursor::Position.X - 50,::Cursor::Position.Y - 50);
   ::Cursor::Clip = Rectangle(this->Location,this->Size);

}
private void MoveCursor()
{
   // Set the Current cursor, move the cursor's Position,
   // and set its clipping rectangle to the form. 

   this.Cursor = new Cursor(Cursor.Current.Handle);
   Cursor.Position = new Point(Cursor.Position.X - 50, Cursor.Position.Y - 50);
   Cursor.Clip = new Rectangle(this.Location, this.Size);
}
Private Sub MoveCursor()
   ' Set the Current cursor, move the cursor's Position,
   ' and set its clipping rectangle to the form. 

   Me.Cursor = New Cursor(Cursor.Current.Handle)
   Cursor.Position = New Point(Cursor.Position.X - 50, Cursor.Position.Y - 50)
   Cursor.Clip = New Rectangle(Me.Location, Me.Size)
End Sub

Комментарии

Это не копия дескриптора; не удалять его.

Применяется к

См. также раздел