개정판 a34f58f6
Controls/RowIndexColumn.cs 추가
Change-Id: Id6950e2fb5ec9e44f4f68819a0fc6277ddc51019
ConvertService/ServiceBase/Markus.Service.StationController/ViewModel/AliveViewModel.cs | ||
---|---|---|
111 | 111 |
} |
112 | 112 |
} |
113 | 113 |
|
114 |
ItemsUpdate(newitems);
|
|
114 |
await System.Windows.Application.Current.Dispatcher.InvokeAsync(() => ItemsUpdate(newitems));
|
|
115 | 115 |
} |
116 | 116 |
catch (Exception ex) |
117 | 117 |
{ |
... | ... | |
167 | 167 |
|
168 | 168 |
if (newitems.Count(x => x.ConvertID == item.ConvertID && x.ProjectNumber == item.ProjectNumber) == 0) |
169 | 169 |
{ |
170 |
AliveItems.RemoveAt(i); |
|
170 |
try |
|
171 |
{ |
|
172 |
AliveItems.RemoveAt(i); |
|
173 |
} |
|
174 |
catch (Exception ex) |
|
175 |
{ |
|
176 |
System.Diagnostics.Debug.WriteLine(ex.ToString()); |
|
177 |
} |
|
171 | 178 |
} |
172 | 179 |
} |
173 | 180 |
} |
... | ... | |
222 | 229 |
{ |
223 | 230 |
base.Loaded(); |
224 | 231 |
|
225 |
if (!IsDesignMode) |
|
232 |
if (!App.IsDesignMode)
|
|
226 | 233 |
{ |
227 | 234 |
backgroundWorker = new BackgroundWorker(); |
228 | 235 |
backgroundWorker.DoWork += backgroundWorker_DoWork; |
내보내기 Unified diff