I\'m developing App which communicate with RFID Reader, I have the following Label which takes it\'s value from the Reader (when I click on the read button on the hardware)
As was mentioned in the comments, it looks like the Statistics class must implement INotifyPropertyChanged (that's how the binding is able to update the UI when the data changes). If that's the case, you should just subscribe to that same event in your code. Wherever you have access to that Statistics variable (in code bebhind or viewmodel), just do
Statistics.PropertyChanged += (o,e)=>
{
if (e.PropertyName = "TotalUniqueCount")
{
//do something
}
}