ControlPaint.DrawRadioButton 方法

定義

繪製選項按鈕控制項。

多載

DrawRadioButton(Graphics, Rectangle, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的選項按鈕控制項。

DrawRadioButton(Graphics, Int32, Int32, Int32, Int32, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的選項按鈕控制項。

DrawRadioButton(Graphics, Rectangle, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的選項按鈕控制項。

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

參數

graphics
Graphics

要在上面繪製的 Graphics

rectangle
Rectangle

Rectangle,表示選項按鈕的大小。

state
ButtonState

ButtonState 值的位元 (Bitwise) 組合,指定繪製按鈕的狀態。

另請參閱

適用於

DrawRadioButton(Graphics, Int32, Int32, Int32, Int32, ButtonState)

在指定的圖形表層和指定的範圍內,繪製指定狀態的選項按鈕控制項。

public:
 static void DrawRadioButton(System::Drawing::Graphics ^ graphics, int x, int y, int width, int height, System::Windows::Forms::ButtonState state);
public static void DrawRadioButton (System.Drawing.Graphics graphics, int x, int y, int width, int height, System.Windows.Forms.ButtonState state);
static member DrawRadioButton : System.Drawing.Graphics * int * int * int * int * System.Windows.Forms.ButtonState -> unit
Public Shared Sub DrawRadioButton (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 值的位元 (Bitwise) 組合,指定繪製按鈕的狀態。

適用於