Condividi tramite


SystemPens.HotTrack Proprietà

Definizione

Ottiene un oggetto Pen che rappresenta il colore usato per designare un elemento intercettato con il mouse.

public:
 static property System::Drawing::Pen ^ HotTrack { System::Drawing::Pen ^ get(); };
public static System.Drawing.Pen HotTrack { get; }
static member HotTrack : System.Drawing.Pen
Public Shared ReadOnly Property HotTrack As Pen

Valore della proprietà

Pen

Oggetto Pen che corrisponde al colore utilizzato per designare un elemento intercettato con il mouse.

Esempio

Nell'esempio di codice seguente viene illustrato come usare la HotTrack proprietà. Per eseguire questo esempio, incollarlo in un Windows Form. Gestire l'evento del modulo e chiamare il DrawWithHotTrackPen metodo dal Paint metodo di gestione degli Paint eventi, passando e come PaintEventArgs.

private void DrawWithHotTrackPen(PaintEventArgs e)
{
    Rectangle rectangle1 = new Rectangle(10, 10, 100, 100);
    e.Graphics.DrawRectangle(SystemPens.HotTrack, rectangle1);
}
Private Sub DrawWithHotTrackPen(ByVal e As PaintEventArgs) 
    Dim rectangle1 As New Rectangle(10, 10, 100, 100)
    e.Graphics.DrawRectangle(SystemPens.HotTrack, rectangle1)

End Sub

Si applica a