I want to implement at simple application that displays a Label with the status of a SerialPort object. The Label's content property is bound to the SerialPort's isOpen property.
The problem is that when the SerialPort closes, the Label's content does not update!
The SerialPort object is a property in my code behind, I tried implementing INotifyPropertyChanged but that doesn't help me much since I don't know when the port actually opens or closes.
Any ideas on how to solve this issue?