반응형
c# Ui Thread 처리하기.
this.Invoke(new Action(delegate ()
{
// UI Update 코드
subfeqlistbox.Items.Add(string.Format("{0} {1} {2}", nowSubFeqBandAreaList[i].bandIdx + "",
nowSubFeqBandAreaList[i].startFeq + "", nowSubFeqBandAreaList[i].endFeq + ""));
}));
c# 코드 내에서 SubThread 로직내에서 간단히 UI Update 를 하기 위한 방법중 하나로 this.Invoke 처리를 위와 같이 하면 간단히 Ui Update 처리를 할 수 있다.
반응형
'c#' 카테고리의 다른 글
[Visual Studio 빌드 오류]"Lc.exe 이(가) 종료되었습니다" 오류 해결 (0) | 2022.02.27 |
---|---|
Cocos2dx Android 간에 함수 호출 (0) | 2022.02.18 |
댓글