I have trouble with some of my map elements, for example MapLine.
When I use this syntax the MapLine is displayed in red and shows a tooltip when mouse is over.
When I use this syntax the MapLine is not displayed and there is no tooltip.
When I use this syntax the MapLine is displayed in red and shows a tooltip when mouse is over.
<tel:MapLine StrokeThickness="5" Stroke="Red" Point1="{Binding MyViewModel.Point1}" Point2="{Binding MyViewModel.Point2}" ToolTip="{Binding MyViewModel.ItemName}" />When I use this syntax the MapLine is not displayed and there is no tooltip.
<tel:MapLine StrokeThickness="5" Point1="{Binding MyViewModel.Point1}" Point2="{Binding MyViewModel.Point2}"> <tel:MapLine.Stroke> <SolidColorBrush Color="Red" /> </tel:MapLine.Stroke> <tel:MapLine.ToolTip> <TextBlock Text="{Binding MyViewModel.ItemName}" /> </tel:MapLine.ToolTip></tel:MapLine>