I have the following lines of XAML:
<extToolkit:BusyIndicator IsBusy="<image source not set>"> <Image Source="{Binding FirstSideImage, Converter={StaticResource bitmapConverter}}" /> </extToolkit:BusyIndicator> I would like the BusyIndicator's IsBusy property to depend on the availability of the Image's Source property. So if there is no image source, IsBusy should be true, otherwise false.
Is this somehow possible? I could of course have a separate property in my view model that does the same but I'd like to know if I can derive this directly from the image.