Click here to Skip to main content
15,890,123 members

Comments by Member 13940788 (Top 2 by date)

Member 13940788 9-Jan-19 1:34am View    
Forget about everything. A data which is coming from wcf(duplex service) callback method(which is implemented at client side that is inside My ViewModel), is not binding to UI.
Member 13940788 8-Jan-19 7:47am View    
Here is my Observable collection

public ObservableCollection<logevnts> ClctionEventLogs
{
get
{
return _collectionEventLogs;
}
set
{
_collectionEventLogs = value;
OnPropertyChanged("ClctionEventLogs");
}

}