为什么TextBox Border Red Color在Textbox上出现在面板上



我处于一个我的文本框的情况下,必须在验证后进行一些验证,它显示了红色边框。问题是,当我将面板悬停在未验证的文本框上时,即使面板具有完全不透明度,红色边框仍然可见 它可能是WPF文本框错误。

我有以下代码来产生此问题:XAML:

<Window x:Class="RedTextBoxFix.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:RedTextBoxFix"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <StackPanel Margin="5">
        <Canvas Panel.ZIndex="6000" Name="panel2" Margin="5">
            <Expander Background="LightGray" ExpandDirection="Right" 
                      Header="Expand over the textbox.." 
                      VerticalAlignment="Top" 
                      HorizontalAlignment="Left">
                <StackPanel Width="900" Height="600">
                </StackPanel>
            </Expander>
        </Canvas>
        <StackPanel Name="panel1" Visibility="Visible" Margin="5">
            <TextBox Name="DataBoundTextBox" Height="20" Width="100" HorizontalAlignment="Center" VerticalAlignment="Center">
                <Binding Path="TextValue">
                    <Binding.ValidationRules>
                        <ExceptionValidationRule/>
                    </Binding.ValidationRules>
                </Binding>
            </TextBox>
        </StackPanel>
    </StackPanel>
</Window>

文件代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace RedTextBoxFix
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            this.DataContext = new MyClass("RemoveThisText");

        }
        public class MyClass : INotifyPropertyChanged
        {
            private string mTextValue;
            public MyClass(string defaultText)
            {
                TextValue = defaultText;
            }
            public string TextValue
            {
                get
                {
                    return mTextValue;
                }
                set
                {
                    mTextValue = value;
                    if (string.IsNullOrEmpty(mTextValue))
                    {
                        throw new ApplicationException("Text value cannot be empty");
                    }
                    OnPropertyChanged(new PropertyChangedEventArgs("TextValue"));
                }
            }
            public event PropertyChangedEventHandler PropertyChanged;
            protected virtual void OnPropertyChanged(PropertyChangedEventArgs e)
            {
                if (this.PropertyChanged != null)
                {
                    this.PropertyChanged(this, e);
                }
            }
        }
    }
}

生产步骤:

(1)在WPF项目中复制粘贴代码,然后在Lauch应用程序中。

(2)删除整个文本,然后按标签,然后您的文本框的红色边框

(3)展开扩展器。

现在,您在扩展器面板上有意外的红色边框。必须删除。但是如何?多数民众赞成在问题,请有任何帮助吗?

装饰物是一种自定义框架工作,它与uielement绑定。装饰物在装饰层中呈现,这是一个呈现的表面,始终位于装饰元素的顶部或装饰元素的集合。

除其他外,装饰物用于提供视觉反馈,在您的情况下进行错误。窗口具有AdornerDecorator,它在所有内容的顶部,并且包含一个AdornerLayer。这就是指示错误呈现错误的装饰器的地方。因此,您需要在Canvas下方的下方,您只需在TextBox周围添加一个。

<StackPanel Name="panel1" Visibility="Visible" Margin="5">
    <AdornerDecorator>
        <TextBox Name="DataBoundTextBox" Height="20" Width="100" HorizontalAlignment="Center" VerticalAlignment="Center">
            <Binding Path="TextValue">
                <Binding.ValidationRules>
                    <ExceptionValidationRule/>
                </Binding.ValidationRules>
            </Binding>
        </TextBox>
    </AdornerDecorator>
</StackPanel>

Microsoft文档上的装饰物的更多详细信息。

相关内容

  • 没有找到相关文章

最新更新