RadioButton コンストラクター

定義

RadioButton クラスの新しいインスタンスを初期化します。

public:
 RadioButton();
public RadioButton ();
Public Sub New ()

次のコード例では、トグル ボタンの外観を RadioButton作成して初期化し、その AutoCheck プロパティ falseを設定し、それを Form.

private void InitializeMyRadioButton()
{
   // Create and initialize a new RadioButton.
   RadioButton radioButton1 = new RadioButton();

   // Make the radio button control appear as a toggle button.
   radioButton1.Appearance = Appearance.Button;

   // Turn off the update of the display on the click of the control.
   radioButton1.AutoCheck = false;

   // Add the radio button to the form.
   Controls.Add(radioButton1);
}
Private Sub InitializeMyRadioButton()
    ' Create and initialize a new RadioButton. 
    Dim radioButton1 As New RadioButton()
       
    ' Make the radio button control appear as a toggle button.
    radioButton1.Appearance = Appearance.Button
       
    ' Turn off the update of the display on the click of the control.
    radioButton1.AutoCheck = False
       
    ' Add the radio button to the form.
    Controls.Add(radioButton1)
End Sub

注釈

既定の RadioButton ビューのテキストはボタンの右側に揃え、 AutoCheck プロパティは true.

適用対象