ToolStripRenderEventArgs.Graphics Propriété

Définition

Obtient Graphics utilisé pour peindre.

public:
 property System::Drawing::Graphics ^ Graphics { System::Drawing::Graphics ^ get(); };
public System.Drawing.Graphics Graphics { get; }
member this.Graphics : System.Drawing.Graphics
Public ReadOnly Property Graphics As Graphics

Valeur de propriété

Graphics

Graphics utilisés pour peindre.

Exemples

L’exemple de code suivant montre comment remplacer la OnRenderToolStripBorder méthode pour dessiner une bordure personnalisée autour d’un ToolStrip contrôle. Cet exemple de code fait partie d’un exemple plus grand fourni pour la ToolStripRenderer classe.

// This method draws a border around the GridStrip control.
protected override void OnRenderToolStripBorder(
    ToolStripRenderEventArgs e)
{
    base.OnRenderToolStripBorder(e);

    ControlPaint.DrawFocusRectangle(
        e.Graphics,
        e.AffectedBounds,
        SystemColors.ControlDarkDark,
        SystemColors.ControlDarkDark);
}
' This method draws a border around the GridStrip control.
Protected Overrides Sub OnRenderToolStripBorder(e As ToolStripRenderEventArgs)
   MyBase.OnRenderToolStripBorder(e)
   
   ControlPaint.DrawFocusRectangle(e.Graphics, e.AffectedBounds, SystemColors.ControlDarkDark, SystemColors.ControlDarkDark)
End Sub

S’applique à

Voir aussi