xaml如何为文本框创建触发器?打字时处于活动状态

发布于 2024-10-30 11:38:04 字数 63 浏览 0 评论 0原文

我有一个文本框,我想添加一个触发器,当我单击该文本框时,文本框将更改边框颜色,直到输入完成 请帮助我使用xaml

I have a textbox, i want add a trigger, when i click that textbox, the textbox will change border color, untill typing is finish
please help me useing xaml

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

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

发布评论

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

评论(2

左岸枫 2024-11-06 11:38:04

试试这个

    <Style TargetType="{x:Type TextBox}">
        <Style.Triggers>
            <Trigger Property="IsFocused"  Value="True">
                <Setter Property="BorderBrush" Value="Red"/>
                <Setter Property="BorderThickness" Value="2"/>
            </Trigger>
        </Style.Triggers>
    </Style>

Try this

    <Style TargetType="{x:Type TextBox}">
        <Style.Triggers>
            <Trigger Property="IsFocused"  Value="True">
                <Setter Property="BorderBrush" Value="Red"/>
                <Setter Property="BorderThickness" Value="2"/>
            </Trigger>
        </Style.Triggers>
    </Style>
万劫不复 2024-11-06 11:38:04

您要求使用触发器,但聚焦状态的不同样式将是我的首选方式

You are asking for a Trigger but a different styling for the Focused state would be my preferred way of doing this

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