我刚开始在Windows Phone应用程序中使用地图,我无法弄清楚如何在图钉的内容中使用换行符。这是我的代码:
<my:Map Height="756" HorizontalAlignment="Left" Name="map1" VerticalAlignment="Top" Width="468" CredentialsProvider="Auc_zPo5mypWlRwCBm73jnZE0D-6AqBQq6bSdt8XpRA" Center="41.6154423246811, 0.738656005859375" ZoomBarVisibility="Visible" ZoomLevel="12" >
<my:Pushpin Location="41.6154423246811, 0.738656005859375" Content="First line, \n second line" />
</my:Map>
感谢您的帮助
答案 0 :(得分:2)
您可以为图钉的内容提供模板:
<my:Pushpin>
<StackPanel>
.. your content here
</StackPanel/>
</my:Pushpin>
请注意,Pushpin的默认属性(即ContentControl)是“内容”,因此您可以通过在标记之间添加代码来直接编辑其内容。
以下是有关自定义图钉的详细信息来源:
答案 1 :(得分:1)
使用System.Environment.NewLine
例如
Mypushpin.Content = "This is line one "+ System.Environment.NewLine + "and this is line two!";