I wish to bind a String with a textbox. The string is constantly being updated in a thread:
String inputread; public event PropertyChangedEventHandler Prope
In threadFunc() function, you set the value directly to inputread (lower case), it's a field and have no call to OnPropertyChanged. You can change the code in threadFunc() to InputRead=plc.InputImage[1].ToString(); I hope it works for you.
threadFunc()
inputread
OnPropertyChanged
InputRead=plc.InputImage[1].ToString();