WPF에서 UI(메인) 스레드에 안전하게 액세스 보고 있는 로그 파일이 갱신될 때마다(새 텍스트로 첨부됨) 데이터 그리드를 다음과 같이 업데이트하는 응용 프로그램이 있습니다. private void DGAddRow(string name, FunctionType ft) { ASCIIEncoding ascii = new ASCIIEncoding(); CommDGDataSource ds = new CommDGDataSource(); int position = 0; string[] data_split = ft.Data.Split(' '); foreach (AttributeType at in ft.Types) { if (at.IsAddress) { ds.Source = HexString2Ascii(data_spl..