如何使用文字大括号“{”在 XAML 中?
我需要将 } 和 { 放入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用:
更多信息可以找到
You can use:
More information can be found here.
使用 {} 作为转义序列。
Use {} as the escape sequence.
对于那些来这里寻找 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).