ToolStripRenderEventArgs.AffectedBounds プロパティ

定義

描画される領域の境界を表す Rectangle を取得します。

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

プロパティ値

Rectangle

描画される領域の境界を表す Rectangle

次のコード例は、メソッドをオーバーライドしてコントロールの OnRenderToolStripBorder 周囲にカスタム境界線を描画する方法を ToolStrip 示しています。 このコード例は、ToolStripRenderer クラスのために提供されている大規模な例の一部です。

// 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

適用対象

こちらもご覧ください