DrawToolTipEventArgs.DrawBackground メソッド

定義

システムの背景色を使用して、ToolTip の背景を描画します。

public:
 void DrawBackground();
public void DrawBackground ();
member this.DrawBackground : unit -> unit
Public Sub DrawBackground ()

次のコード例では、 をカスタム描画する方法を ToolTip示します。 この例では、 を ToolTip 作成し、 にある 3 つの Button コントロールに Form関連付けます。 この例では、 プロパティを OwnerDraw true に設定し、 イベントを処理します DrawDrawイベント ハンドラーでは、 ToolTip プロパティで示されているように、 が表示されているボタンToolTipに応じて、カスタムが異なる方法でDrawToolTipEventArgs.AssociatedControl描画されます。

次のコードの抜粋は、および DrawText メソッドのDrawBorderDrawBackground使用を示しています。 完全な DrawToolTipEventArgs コード例については、クラスの概要を参照してください。

// Draw the ToolTip using default values if the ToolTip is for button3.
else if ( e->AssociatedControl == button3 )
{
   e->DrawBackground();
   e->DrawBorder();
   e->DrawText();
}
// Draw the ToolTip using default values if the ToolTip is for button3.
else if (e.AssociatedControl == button3)
{
    e.DrawBackground();
    e.DrawBorder();
    e.DrawText();
}
ElseIf (e.AssociatedControl Is button3) Then
    ' Draw the ToolTip using default values if the ToolTip is for button3.
    e.DrawBackground()
    e.DrawBorder()
    e.DrawText()
End If

注釈

の特定の視覚的側面をカスタマイズし、現在の ToolTipSystemColors.Infoを使用して標準のツールヒントの背景を描画する場合は、このメソッドを使用します。 プロパティで指定された領域を塗りつぶすために背景が Bounds 描画されます。

適用対象