如何匹配“换行”在数据触发器中?

发布于 2024-11-16 02:22:40 字数 179 浏览 3 评论 0原文

在我的 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 技术交流群。

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

发布评论

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

评论(3

一城柳絮吹成雪 2024-11-23 02:22:40

这能解决问题吗?

<DataTrigger Binding="{Binding Path=Word}" Value="
">

Does this solve the problem?

<DataTrigger Binding="{Binding Path=Word}" Value="
">
蓝礼 2024-11-23 02:22:40

下面的作品,你可以尝试一下:

xmlns:sys="clr-namespace:System;assembly=mscorlib"
<TextBox AcceptsReturn="True">
    <TextBox.Style>
        <Style TargetType="TextBox">
            <Style.Triggers>
                <Trigger Property="Text" Value="{x:Static sys:Environment.NewLine}">
                    <Setter Property="Background" Value="Green"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
</TextBox>

The following works, you can try it:

xmlns:sys="clr-namespace:System;assembly=mscorlib"
<TextBox AcceptsReturn="True">
    <TextBox.Style>
        <Style TargetType="TextBox">
            <Style.Triggers>
                <Trigger Property="Text" Value="{x:Static sys:Environment.NewLine}">
                    <Setter Property="Background" Value="Green"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
</TextBox>
香草可樂 2024-11-23 02:22:40

经过一番测试,我发现答案是

After some testing, I found the answer is .

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