Translate

Dienstag, 10. November 2015

C# BackgroundWorker - Cross-thread operation not valid

Lösung des Cross-Thread errors:
if (....)
{
    Action action = () => richtextBox.Text.Add("MyText");
    richtextBox.Invoke(action); // Or use BeginInvoke
}

Keine Kommentare:

Kommentar veröffentlichen