我有一個一直在 catch 資料的 task
當拿到資料後要馬上在 UI 上更新
使用 MVVM binding 了 ObservableCollection 的物件到 ListBox
xaml:
<ListBox x:Name="lsb_log" Width="auto" ItemsSource="{Binding DisplayLogs}"/>
code:
private ObservableCollection<string> _displayLogs;
public ObservableCollection<string> DisplayLogs
{
get
{
return _displayLogs;
}
}
public Testpro()
{
_displayLogs = new ObservableCollection<string>();
Task.Run(new Action(outputData));
}
private void outputData()
{
string str = "";
while (true)
{
string newString = GetInfoString();
if (string.IsNullOrWhiteSpace(newString) || str == newString)
continue;
str = newString;
Debug.WriteLine(str);
Application.Current.Dispatcher.BeginInvoke((Action)delegate ()
{
DisplayLogs.Add(str);
});
}
}
實際上 Debug.WriteLine 能夠 realtime 的跑出結果
但是 BeginInvoke 直到沒資料的時候才會一次 show 出全部的結果
而且都是最後一個 str 的值