Use invoke so that we run code on the UI thread (no idea how this was working before)

This commit is contained in:
David Fowler 2018-05-13 23:52:41 -07:00
Родитель 77e7a20f83
Коммит da843919c9
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -103,7 +103,12 @@ namespace WindowsFormsSample
private void Log(Color color, string message)
{
messagesList.Items.Add(new LogMessage(color, message));
Action callback = () =>
{
messagesList.Items.Add(new LogMessage(color, message));
};
Invoke(callback);
}
private class LogMessage