c#

c# Ui Thread 처리하기

클레인 2019. 11. 13.
반응형

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 처리를 할 수 있다.

반응형

댓글