I have a SL 3.0 page with a lot of textblock controls laid out. Each textblock is bound to a property of the Account class. The XAML page codebehind (mypage.xaml.cs) has a OnNavigatedTo method in which the VM instance is created and set to the data context like this: this.DataContext = new VM();
In the VM there is a public property of datatype Account and in the ctor of the VM a WCF service method is called asynchronously and in the callback method the Account property is set.
With all this, the data is not showing in the XAML view. Any help?