绑定语法的 StringFormat 部分中的 {} 括号有何含义?

发布于 2024-12-13 10:08:45 字数 115 浏览 0 评论 0原文

在数据绑定中,您可以使用多重绑定......并且通过多重绑定,您可以组合诸如 {}{0} {1} 之类的属性。我的问题是第一个 {} 是什么意思?我不是在谈论用于选择要使用哪个属性的 {0}。

谢谢。

In data-binding you can use multi-binding.. and with multi-binding you can combine properties such {}{0} {1}. My question is what mean the first {} ? I am not talking about {0} which is used to select which property to use..

Thanks.

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

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

发布评论

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

评论(1

江湖正好 2024-12-20 10:08:45

这是标记扩展 {} 转义序列

使用转义序列 ({}) 以便可以将左大括号 ({) 用作 XAML 中的文字字符。

详细说明:在 XAML 标记中,{} 是特殊字符:例如,编写 {Binding} 创建一个 Binding 对象。但是,您希望将属性StringFormat 设置为文字{0} {1}。因此,您可以在属性值前添加 {} 前缀,以告诉解析器:“下面的大括号只是大括号,不带有任何特殊含义。”

It's the markup extension {} escape sequence:

The escape sequence ({}) is used so that an open brace ({) can be used as a literal character in XAML.

To elaborate: In XAML markup, { and } are special characters: For example, writing {Binding} creates a Binding object. You, however, want to set the property StringFormat to the literal value {0} {1}. Thus, you prefix your property value with {} to tell the parser: "The following braces are just braces and do not carry any special meaning."

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