如何在地图图钉内容中添加换行符?

发布于 2024-11-18 07:43:23 字数 496 浏览 6 评论 0原文

我刚刚开始在 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>

谢谢您的帮助

I've just started using maps in my Windows Phone application and I can't figure out how can I have linebreaks in the pushpin's content. Here's my code:

<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>

Thank you for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

許願樹丅啲祈禱 2024-11-25 07:43:23

您可以为图钉的内容提供一个模板:

<my:Pushpin>
    <StackPanel>
        .. your content here
    </StackPanel/>
</my:Pushpin>

请注意,图钉(即 ContentControl)的默认属性是它的“内容”,因此您可以通过在标签之间添加代码来直接编辑其内容。

以下是有关自定义图钉的良好信息来源:

http://msdn.microsoft.com/en-我们/gg266447

You can provide a template for the content of your pushpin:

<my:Pushpin>
    <StackPanel>
        .. your content here
    </StackPanel/>
</my:Pushpin>

Note that default property of Pushpin (i.e. a ContentControl) is it's "Content" so you can directly edit it's content by adding codes between tags.

Here is a good source of information about customizing pushpins:

http://msdn.microsoft.com/en-us/gg266447

时光匆匆的小流年 2024-11-25 07:43:23

使用 System.Environment.NewLine

例如

Mypushpin.Content = "这是第一行 "+ System.Environment.NewLine + "这是第二行!";

Use System.Environment.NewLine

eg

Mypushpin.Content = "This is line one "+ System.Environment.NewLine + "and this is line two!";

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文