I must be missing a step here.
<toolkit:BusyIndicator HorizontalAlignment="Center" VerticalAlignment="Center" Name="busyIndicator" IsBusy="{Binding BusyIndicator}">
<Grid Background="#FFE6F0FF" HorizontalAlignment="Left" VerticalAlignment="Top" >
I have the following in my viewmodel:
private BusyIndicator _busyIndicator;
public BusyIndicator BusyIndicator
{
get { return _busyIndicator; }
set
{
if (_busyIndicator == value) return;
_busyIndicator = value;
OnNotifyPropertyChanged("BusyIndicator");
}
}
BusyIndicator = new BusyIndicator { IsBusy = true, BusyContent = "Please wait..." };
But when I fire my async call to WCF, nothing shows up at all?
Why does the property return a
BusyIndicator? Shouldn’t it be a bool? Then I think it should work.