在 Silverlight xaml 中进行数据绑定时附加字符串问题

发布于 2024-11-09 03:30:02 字数 58 浏览 0 评论 0原文

我有一个接受字符串的控件,但在显示它时我想在 xaml 中将“Hello”附加到该字符串,我该怎么做?

I have a control which accepts a string but when displaying it i want to append "Hello" to that string right in xaml how do i do it?

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

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

发布评论

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

评论(1

永不分离 2024-11-16 03:30:02

您可以绑定到该属性并使用 StringFormat:

<TextBlock Text=”{Binding Path=UserName, StringFormat=’Hello \{0\} ’}“/>

可以在此处找到更多信息:
http://www.designersilverlight。 com/2010/05/28/silverlight-4-binding-and-stringformat-in-xaml/

You can bind to the property and use the StringFormat:

<TextBlock Text=”{Binding Path=UserName, StringFormat=’Hello \{0\} ’}“/>

Some more info can be found here:
http://www.designersilverlight.com/2010/05/28/silverlight-4-binding-and-stringformat-in-xaml/

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