In my Windows I have a TextBox which I like to update (text property) from another thread. When doing so, I get the InvalidOperationException (see title). I have found diffe
Window1.MyWindow.informationTextBox.Dispatcher.Invoke( DispatcherPriority.Normal, new Action(() => Window1.MyWindow.informationTextBox.Text += value));