반응형
delegate void AddList();
public void Add_cross(){
try{
if (this.InvokeRequired){ //다른 스레드에서 접근이 필요하면
AddList d = new AddList(Add_cross);
this.Invoke(d, new object[] {});
}else
Add_lstView_Room(strId, strRTitle, strRMaxUser, strOpenRoom);
}catch (Exception ex){
wnd.Add_MSG("List 크로스 오류: " + ex.Message);
}
}
반응형
'C#' 카테고리의 다른 글
[C#] TopMost 폼 여러개일 경우 가장 위로 설정 (0) | 2021.02.16 |
---|---|
[C#] Form 호출 (0) | 2021.02.16 |
[C#] DB연결 SQLConnection (0) | 2021.02.16 |
[C#] KeyPress / KeyDown 이벤트 (Enter 입력) (0) | 2021.02.16 |
[C#] 폼의 X버튼 클릭시 확인 메세지 생성 (0) | 2021.02.16 |