I am trying the Infowindow tool, but have been unable to view all of the items in the data template. I can only read the first line, the window doesn't seem to resize based on content. How do I fix this? My data template looks like this:
<DataTemplate x:Key="LocationInfoWindowTemplate">
<StackPanel>
<TextBlock Text="Coordinates" />
<TextBlock Text="{Binding [DegMinSec]}" />
<TextBlock Text="{Binding [DecDeg]}" />
</StackPanel>
</DataTemplate>