适用于 Windows Phone 7 的 Silverlight - 两个文本块一个接一个,没有换行符
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
三种最常见的 UI 布局元素是 StackPanel、Grid 和 StackPanel。帆布。这是一种方法..
Three most common UI layout elements are StackPanel, Grid & Canvas. Here's one way..