I have WPF window Title-property binded to ViewModel ReadOnly property as:
Title="{Binding ClientAndDate}"
ViewModel property looks like this:
Public ReadOnly Property ClientAndDate As String
Get
Return SelectedClient.Name) & " " & SelectedClient.Date)
End Get
End Property
I have INotifyPropertyChanged implemented in ViewModel but since this is ReadOnly property how it will notify the UI to update when either SelectedClient.Name or SelectedClient.Date is changed?
INotifyPropertyChangedbehavior? Are you facing any issue?