Cursor.Draw(Graphics, Rectangle) Metodo

Definizione

Disegna il cursore sulla superficie specificata e all'interno dei limiti definiti.

C#
public void Draw (System.Drawing.Graphics g, System.Drawing.Rectangle targetRect);

Parametri

g
Graphics

Superficie dell'oggetto Graphics su cui disegnare l'oggetto Cursor.

targetRect
Rectangle

Oggetto Rectangle che rappresenta i limiti dell'oggetto Cursor.

Esempio

Nell'esempio di codice seguente viene disegnato il cursore specificato nel modulo nella dimensione normale e in modalità estesa, due volte le dimensioni. In questo esempio è necessario disporre di un Form oggetto e Cursor di passare al metodo quando viene chiamato.

C#
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();
   }
}

Commenti

Il comando di disegno ha origine nell'area grafica rappresentata dal g parametro, ma non Graphics contiene informazioni su come eseguire il rendering di un'immagine specificata, quindi passa la chiamata all'oggetto Cursor. Il Draw metodo ritaglia l'immagine alle dimensioni specificate e consente di specificare un Rectangle oggetto all'interno del quale disegnare .Cursor Questo metodo viene in genere usato se si vuole disegnare il cursore in un'area Grafica. Ad esempio, potrebbe essere presente una finestra di dialogo che consente all'utente di selezionare i cursori da un controllo o da un ListBox gruppo di RadioButton controlli.

Si applica a

Prodotto Versioni
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8
Windows Desktop 3.0, 3.1, 5, 6, 7

Vedi anche