다음을 통해 공유


RadioButton 생성자

정의

RadioButton 클래스의 새 인스턴스를 초기화합니다.

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

예제

다음 코드 예제에서는 생성자를 사용 하 여 클래스의 새 인스턴스를 RadioButtonRadioButton 만드는 방법을 보여 줍니다.

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

적용 대상

추가 정보