ControlPaint.DrawCheckBox 方法

定義

繪製核取方塊控制項。

多載

DrawCheckBox(Graphics, Rectangle, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的核取方塊控制項。

DrawCheckBox(Graphics, Int32, Int32, Int32, Int32, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的核取方塊控制項。

DrawCheckBox(Graphics, Rectangle, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的核取方塊控制項。

public:
 static void DrawCheckBox(System::Drawing::Graphics ^ graphics, System::Drawing::Rectangle rectangle, System::Windows::Forms::ButtonState state);
public static void DrawCheckBox (System.Drawing.Graphics graphics, System.Drawing.Rectangle rectangle, System.Windows.Forms.ButtonState state);
static member DrawCheckBox : System.Drawing.Graphics * System.Drawing.Rectangle * System.Windows.Forms.ButtonState -> unit
Public Shared Sub DrawCheckBox (graphics As Graphics, rectangle As Rectangle, state As ButtonState)

參數

graphics
Graphics

要在上面繪製的 Graphics

rectangle
Rectangle

Rectangle,表示核取方塊的大小。

state
ButtonState

ButtonState 值的位元組合,指定繪製核取方塊的狀態。

適用於

DrawCheckBox(Graphics, Int32, Int32, Int32, Int32, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的核取方塊控制項。

public:
 static void DrawCheckBox(System::Drawing::Graphics ^ graphics, int x, int y, int width, int height, System::Windows::Forms::ButtonState state);
public static void DrawCheckBox (System.Drawing.Graphics graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state);
static member DrawCheckBox : System.Drawing.Graphics * int * int * int * int * System.Windows.Forms.ButtonState -> unit
Public Shared Sub DrawCheckBox (graphics As Graphics, x As Integer, y As Integer, width As Integer, height As Integer, state As ButtonState)

參數

graphics
Graphics

要在上面繪製的 Graphics

x
Int32

繪圖矩形左上角的 x 座標。

y
Int32

繪圖矩形左上角的 y 座標。

width
Int32

核取方塊的寬度。

height
Int32

核取方塊的高度。

state
ButtonState

ButtonState 值的位元組合,指定繪製核取方塊的狀態。

適用於