I know the DataReceived event is fired on a background thread. How do I tell the GUI thread to show the data in the event handler?
|
This code assumes you have already added a form-level I'm not 100% certain about the code that converts the bytes available in the port to a string, as I have not run this with a live serial port collecting data. But this code will allow you to display the received data regardless of whether the event is on a different thread or not.
|
||||
|
|
|
You can use the IsInvokeRequired and BeginInvoke methods on your form to switch control back to the UI thread. In some cases, I've also used a timer to watch for changes in some shared data structure like a list of messages. But that works best when you've got a pretty steady stream of messages coming from some background thread. |
|||
|
|