当鼠标悬停在文本框上时删除浅蓝色边框

发布于 2024-12-13 09:19:14 字数 43 浏览 0 评论 0原文

对于文本框,当我将鼠标悬停在其上时,会出现浅蓝色边框,知道如何删除它吗?

For a textbox, when I mouse over it there is this light blue border appearing, any idea how to remove that?

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

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

发布评论

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

评论(1

终止放荡 2024-12-20 09:19:14

您可以修改 Template,这将是没有任何边框的最小模板:

  <TextBox>
    <TextBox.Template>
        <ControlTemplate TargetType="{x:Type TextBox}">
            <ScrollViewer Name="PART_ContentHost"/>
        </ControlTemplate>
    </TextBox.Template>
  </TextBox>

You can modify the Template, this would be the minimum without any borders at all:

  <TextBox>
    <TextBox.Template>
        <ControlTemplate TargetType="{x:Type TextBox}">
            <ScrollViewer Name="PART_ContentHost"/>
        </ControlTemplate>
    </TextBox.Template>
  </TextBox>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文