如何匹配“换行”在数据触发器中?
在我的 XAML 中,我试图实现以下内容:
<DataTrigger Binding="{Binding Path=Word}" Value="\n">
但这不起作用,即使 Word 是 \n。我怀疑 \n 不是在 XAML 中表达换行符的正确方法,但是什么是呢?
In my XAML, I am trying to implement the folowing:
<DataTrigger Binding="{Binding Path=Word}" Value="\n">
but this does not work, even though Word is \n. I suspect that \n is not the right way to express newline in XAML, but what would be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这能解决问题吗?
Does this solve the problem?
下面的作品,你可以尝试一下:
The following works, you can try it:
经过一番测试,我发现答案是
。
After some testing, I found the answer is
.