Some of these things should be so simple but I end up spending days on it. Really frustrating.
I looked up examples on how to set a label to hard coded text and a binding.
Something like "Airports found = 3".
I tried various ways to do this but all I get is just the number.
<Label x:Name="lblAptCount" Content="{Binding Path=DvAirports.Count, StringFormat='Airports found = \{0\}'}"
ToolTip="Number of airports found near origin airport" HorizontalAlignment="Left" VerticalAlignment="Top" RenderTransformOrigin="1.239,5.789" Margin="0,134,0,0" Width="207"/>
When I use this XAML, the result in the label is just the number like 3.
Can anyone point me in the right direction please.