Text 찾기
//
private string selected_RadioButton_String(GroupBox control)
{
foreach (Control groupBox in control.Controls)
{
if (groupBox.GetType() == typeof(RadioButton))
{
RadioButton rb = groupBox as RadioButton;
if (rb.Checked && rb != null)
{
return rb.Text;
}
}
}
return "";
}
Text 선택
//
private void select_RadioButton_String(GroupBox control, string selComTxt)
{
foreach (Control groupBox in control.Controls)
{
if (groupBox.GetType() == typeof(RadioButton))
{
RadioButton rb = groupBox as RadioButton;
if (rb.Text == selComTxt)
{
rb.Checked = true;
}
}
}
}
'C#.Net' 카테고리의 다른 글
[C#] 가비지 컬렉터(Garbage Collector) (4) | 2024.08.30 |
---|---|
C#에서 MS Access 파일 압축 (0) | 2024.07.28 |
Thread.Sleep과 Task.Delay 설명 (출처: 디씨인사이드 갤러리) (0) | 2024.07.16 |
DataGridview 데이터 추가 시 깜빡임 해결 (0) | 2024.07.03 |
c# ADOX.Create 시 클래스가 등록되지 않았습니다 예외 해결 (0) | 2024.04.17 |