728x90
foreach(Control control in this.Controls)
{
if(control is TextBox)
{
TextBox textBox = (TextBox)control;
if (textBox != null) textBox.Text = string.Empty;
}
}
실행하는 UI에 따라서 다른것 같긴 한데 우선 기록 해둔다.
728x90
'C#' 카테고리의 다른 글
C# / switch case range, switch case 범위 연산자 (0) | 2021.05.18 |
---|---|
C# / 화면 캡처 해서 바탕 화면에 폴더 만들어서 저장 하기 (0) | 2021.04.14 |
C# / concurrentdictionary copy, 딕셔러니 복사 (0) | 2021.04.09 |
C# / 메소드, 함수 종료 하기 (0) | 2021.04.08 |
C# / checkedlistbox live search, 체크 박스 리스트 검색 하기 (0) | 2021.04.08 |