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 値のビットごとの組み合わせ。

こちらもご覧ください

適用対象

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 値のビットごとの組み合わせ。

適用対象