ControlPaint.DrawSelectionFrame メソッド

定義

標準の選択項目の枠を、指定した状態で、指定したグラフィックスの表面に、指定した内部と外部の大きさで、指定した背景色を使用して描画します。

public:
 static void DrawSelectionFrame(System::Drawing::Graphics ^ graphics, bool active, System::Drawing::Rectangle outsideRect, System::Drawing::Rectangle insideRect, System::Drawing::Color backColor);
public static void DrawSelectionFrame (System.Drawing.Graphics graphics, bool active, System.Drawing.Rectangle outsideRect, System.Drawing.Rectangle insideRect, System.Drawing.Color backColor);
static member DrawSelectionFrame : System.Drawing.Graphics * bool * System.Drawing.Rectangle * System.Drawing.Rectangle * System.Drawing.Color -> unit
Public Shared Sub DrawSelectionFrame (graphics As Graphics, active As Boolean, outsideRect As Rectangle, insideRect As Rectangle, backColor As Color)

パラメーター

graphics
Graphics

描画する Graphics

active
Boolean

選択項目の枠をアクティブな状態で描画する場合は、true。それ以外の場合は、false

outsideRect
Rectangle

選択項目の枠の外部境界を表す Rectangle

insideRect
Rectangle

選択項目の枠の内部境界を表す Rectangle

backColor
Color

枠の背景の Color

注釈

選択フレームは、デザイン時に選択したコンポーネントの周りに描画されるフレームです。

パラメーターは backColor 、フレームの塗りつぶしの色を計算するために使用され、常に背景に表示されます。

パラメーターが activetrue設定されている場合、選択フレームは、コンポーネントがアクティブ化されたことを示す一連のハッチ マークとして描画されます。それ以外の場合、選択フレームは、実装に応じて点線のパターンまたは何も描画されません。

適用対象