如何使用文字大括号“{”在 XAML 中?

发布于 2024-11-15 01:53:50 字数 137 浏览 4 评论 0原文

我需要将 } 和 { 放入 XAML ConvertParameter 中而不对其进行解释:

ConverterParameter = "{0}/{1}"

...这不起作用。如何做到这一点?

I need put in } and { in a XAML ConvertParameter without it being interpreted:

ConverterParameter = "{0}/{1}"

...which does not work. How to do this?

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

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

发布评论

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

评论(3

若水般的淡然安静女子 2024-11-22 01:53:50

您可以使用:

ConverterParameter = "{}{0}/{1}"

更多信息可以找到

You can use:

ConverterParameter = "{}{0}/{1}"

More information can be found here.

树深时见影 2024-11-22 01:53:50

使用 {} 作为转义序列

ConverterParameter = "{}{0}/{1}"

Use {} as the escape sequence.

ConverterParameter = "{}{0}/{1}"
作业与我同在 2024-11-22 01:53:50

对于那些来这里寻找 WinRT-XAML 答案的人。转义序列是 \ 符号。尽管本文档声明' 应该可以工作,但另一方面 这个示例使用\(这实际上对我有用)。

For those who got here looking for the answer for WinRT-XAML. The escape sequence is \ sign. Although this documentation states ' should work but on the other hand this example uses \ (which actually worked for me).

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