Share via


Cursor.Draw(Graphics, Rectangle) Methode

Definition

Zeichnet den Cursor auf der angegebenen Oberfläche innerhalb der angegebenen Begrenzungen.

public:
 void Draw(System::Drawing::Graphics ^ g, System::Drawing::Rectangle targetRect);
public void Draw (System.Drawing.Graphics g, System.Drawing.Rectangle targetRect);
member this.Draw : System.Drawing.Graphics * System.Drawing.Rectangle -> unit
Public Sub Draw (g As Graphics, targetRect As Rectangle)

Parameter

g
Graphics

Die Graphics-Oberfläche, auf der der Cursor gezeichnet werden soll.

targetRect
Rectangle

Das Rectangle, das die Begrenzungen des Cursor darstellt.

Beispiele

Im folgenden Codebeispiel wird der angegebene Cursor auf dem Formular in seiner normalen Größe und im gestreckten Modus zweimal ziehbar. In diesem Beispiel müssen Sie über ein Form und ein Cursor Objekt verfügen, das an die Methode übergeben wird, wenn sie aufgerufen wird.

void DrawCursorsOnForm( System::Windows::Forms::Cursor^ cursor )
{
   
   // If the form's cursor is not the Hand cursor and the
   // Current cursor is the Default, Draw the specified
   // cursor on the form in normal size and twice normal size.
   if ( this->Cursor != Cursors::Hand && System::Windows::Forms::Cursor::Current == Cursors::Default )
   {
      
      // Draw the cursor stretched.
      Graphics^ graphics = this->CreateGraphics();
      Rectangle rectangle = Rectangle(Point(10,10),System::Drawing::Size( cursor->Size.Width * 2, cursor->Size.Height * 2 ));
      cursor->DrawStretched( graphics, rectangle );
      
      // Draw the cursor in normal size.
      rectangle.Location = Point(rectangle.Width + rectangle.Location.X,rectangle.Height + rectangle.Location.Y);
      rectangle.Size = cursor->Size;
      cursor->Draw( graphics, rectangle );
      
      // Dispose of the cursor.
      delete cursor;
   }
}
private void DrawCursorsOnForm(Cursor cursor)
{
   // If the form's cursor is not the Hand cursor and the 
   // Current cursor is the Default, Draw the specified 
   // cursor on the form in normal size and twice normal size.
   if(this.Cursor != Cursors.Hand & 
     Cursor.Current == Cursors.Default)
   {
      // Draw the cursor stretched.
      Graphics graphics = this.CreateGraphics();
      Rectangle rectangle = new Rectangle(
        new Point(10,10), new Size(cursor.Size.Width * 2, 
        cursor.Size.Height * 2));
      cursor.DrawStretched(graphics, rectangle);
        
      // Draw the cursor in normal size.
      rectangle.Location = new Point(
      rectangle.Width + rectangle.Location.X, 
        rectangle.Height + rectangle.Location.Y);
      rectangle.Size = cursor.Size;
      cursor.Draw(graphics, rectangle);

      // Dispose of the cursor.
      cursor.Dispose();
   }
}
Private Sub DrawCursorsOnForm(cursor As Cursor)
   ' If the form's cursor is not the Hand cursor and the 
   ' Current cursor is the Default, Draw the specified 
   ' cursor on the form in normal size and twice normal size. 
   If (Not Me.Cursor.Equals(Cursors.Hand)) And _
     Cursor.Current.Equals(Cursors.Default) Then

      ' Draw the cursor stretched.
      Dim graphics As Graphics = Me.CreateGraphics()
      Dim rectangle As New Rectangle(New Point(10, 10), _
        New Size(cursor.Size.Width * 2, cursor.Size.Height * 2))
      cursor.DrawStretched(graphics, rectangle)
     
      ' Draw the cursor in normal size.
      rectangle.Location = New Point(rectangle.Width + _
        rectangle.Location.X, rectangle.Height + rectangle.Location.Y)
      rectangle.Size = cursor.Size
      cursor.Draw(graphics, rectangle)

      ' Dispose of the cursor.
      cursor.Dispose()
   End If
End Sub

Hinweise

Der Zeichnungsbefehl stammt aus der Grafikoberfläche, die durch den g Parameter dargestellt wird, enthält jedoch Graphics keine Informationen zum Rendern eines bestimmten Bilds, sodass er den Aufruf an den CursorParameter übergibt. Mit Draw der Methode wird das Bild an die angegebenen Dimensionen angepasst und Sie können eine Rectangle Angabe angeben, in der sie Cursorzeichnen können. Diese Methode wird in der Regel verwendet, wenn Sie den Cursor auf einer Grafikoberfläche zeichnen möchten. Sie können beispielsweise über ein Dialogfeld verfügen, mit dem der Benutzer Cursor aus einem ListBox Steuerelement oder einer Gruppe von RadioButton Steuerelementen auswählen kann.

Gilt für

Siehe auch