适用于 Windows Phone 7 的 Silverlight - 两个文本块一个接一个,没有换行符

发布于 2024-10-20 11:12:23 字数 386 浏览 1 评论 0原文

我对 Windows Phone 7 开发还比较陌生,所以请耐心等待。

我有两个文本块,每个文本块都绑定到两个不同的属性,如下所示:

              <TextBlock Text="{Binding ID}" />
              <TextBlock Text="{Binding Title}"/>

因此,当我部署此代码时,在手机上它将是这样的:

6
This is a title

我希望文本以这种方式显示:

6: This is a title

什么是最简单的实现这个目标的方法?

I'm relatively new to Windows Phone 7 development, so bear with me on this.

I've two text blocks, each with binding to two different properties, like this:

              <TextBlock Text="{Binding ID}" />
              <TextBlock Text="{Binding Title}"/>

So when I deploy this code, on the phone it will be something like this:

6
This is a title

I want the text to be displayed this way instead:

6: This is a title

What is the easiest way to achieve this?

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

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

发布评论

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

评论(2

迷你仙 2024-10-27 11:12:23
 <TextBlock>
     <Run Text="{Binding ID}" />: 
     <Run Text="{Binding Title}"/>
 </TextBlock>
 <TextBlock>
     <Run Text="{Binding ID}" />: 
     <Run Text="{Binding Title}"/>
 </TextBlock>
凤舞天涯 2024-10-27 11:12:23

三种最常见的 UI 布局元素是 StackPanel、Grid 和 StackPanel。帆布。这是一种方法..

 <StackPanel Orientation="Horizontal">
    <TextBlock .. />
    <TextBlock .. />
 </StackPanel>

Three most common UI layout elements are StackPanel, Grid & Canvas. Here's one way..

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