ControlPaint.DrawSizeGrip メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
フォームのサイズ グリップを描画します。
オーバーロード
DrawSizeGrip(Graphics, Color, Rectangle) |
フォームのサイズ グリップを、指定した輪郭および背景色を使用して、指定したグラフィックスの表面に描画します。 |
DrawSizeGrip(Graphics, Color, Int32, Int32, Int32, Int32) |
フォームのサイズ グリップを、指定した輪郭および背景色を使用して、指定したグラフィックスの表面に描画します。 |
DrawSizeGrip(Graphics, Color, Rectangle)
フォームのサイズ グリップを、指定した輪郭および背景色を使用して、指定したグラフィックスの表面に描画します。
public:
static void DrawSizeGrip(System::Drawing::Graphics ^ graphics, System::Drawing::Color backColor, System::Drawing::Rectangle bounds);
public static void DrawSizeGrip (System.Drawing.Graphics graphics, System.Drawing.Color backColor, System.Drawing.Rectangle bounds);
static member DrawSizeGrip : System.Drawing.Graphics * System.Drawing.Color * System.Drawing.Rectangle -> unit
Public Shared Sub DrawSizeGrip (graphics As Graphics, backColor As Color, bounds As Rectangle)
パラメーター
注釈
この backColor
パラメーターは、常に背景に対して表示されるように、サイズ グリップの色を計算するために使用されます。
サイズ変更可能ウィンドウを定義する場合は、サイズ グリップを含めることができます。 サイズ グリップは、ユーザーがウィンドウのサイズを変更できるようにする特別なハンドルです。
こちらもご覧ください
適用対象
DrawSizeGrip(Graphics, Color, Int32, Int32, Int32, Int32)
フォームのサイズ グリップを、指定した輪郭および背景色を使用して、指定したグラフィックスの表面に描画します。
public:
static void DrawSizeGrip(System::Drawing::Graphics ^ graphics, System::Drawing::Color backColor, int x, int y, int width, int height);
public static void DrawSizeGrip (System.Drawing.Graphics graphics, System.Drawing.Color backColor, int x, int y, int width, int height);
static member DrawSizeGrip : System.Drawing.Graphics * System.Drawing.Color * int * int * int * int -> unit
Public Shared Sub DrawSizeGrip (graphics As Graphics, backColor As Color, x As Integer, y As Integer, width As Integer, height As Integer)
パラメーター
- x
- Int32
サイズ グリップの左上隅の x 座標。
- y
- Int32
サイズ グリップの左上隅の y 座標。
- width
- Int32
サイズ グリップの幅。
- height
- Int32
サイズ グリップの高さ。
注釈
この backColor
パラメーターは、常に背景に対して表示されるように、サイズ グリップの色を計算するために使用されます。
サイズ変更可能ウィンドウを定義する場合は、サイズ グリップを含めることができます。 サイズ グリップは、ユーザーがウィンドウのサイズを変更できるようにする特別なハンドルです。