1

我一直在尽一切努力解决这个问题。:(

对于文本框,我有一个 Validation.ErrorTemplate 设置,文本框右侧有一个图像,但它有一个验证错误。

这很好用!但我想做的一件事是调整有错误的文本框的大小或设置边距,使其适合文本框在表单上的空间。目前,图像在文本框区域之外流动。

我真正想要的是有错误的文本框占用与没有文本框相同的空间。

这是我的 XAML 风格:

<Style TargetType="{x:Type TextBox}">
<Style.Resources>
  <my:TextBoxWidthTransformConverter x:Key="TextBoxWidthTransformConverter"/>
</Style.Resources>
<Style.Triggers>
  <Trigger Property="Validation.HasError" Value="true">
    <Setter Property="Foreground" Value="Red"/>
    <Setter Property="Margin" Value="{Binding Converter={StaticResource TextBoxWidthTransformConverter}, RelativeSource={RelativeSource Self}}"/>
    <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem.ErrorContent}"/>
  </Trigger>
</Style.Triggers>
<Setter Property="Validation.ErrorTemplate">
  <Setter.Value>
    <ControlTemplate>
      <StackPanel 
        Margin="{TemplateBinding Margin}"
        Orientation="Horizontal" 
        RenderOptions.BitmapScalingMode="NearestNeighbor"
        >              
        <AdornedElementPlaceholder 
          Grid.Column="1" 
          Grid.Row="1" 
          Name="controlWithError" 
          />
        <Border Width="2"/>
        <Image 
          ToolTip="{Binding ElementName=controlWithError, Path=AdornedElement.(Validation.Errors).CurrentItem.ErrorContent}" 
          Source="imagepath"
          />
      </StackPanel>
    </ControlTemplate>
  </Setter.Value>
</Setter>

我正在使用转换器 TextBoxWidthTransformConverter 只是为了看看我是否可以发生一些事情,但在我只是在值中使用“0,0,20,0”之前,无济于事。转换器不会触发,保证金不会改变。我使用 Snoop 来查看是否可以看到被触摸或更改的属性,但没有任何反应。

Margin 是 Validation.HasError 属性无法更改的属性吗?

任何见解都会很棒!

谢谢!

4

1 回答 1

2

希望能帮助任何可能遇到这个问题的人。

我仍然不确定为什么 Margin 属性在 Validation.HasError 触发期间没有改变,但我发现了一个肮脏的工作。

解决方法使用 IValueConverter 劫持 Width 属性绑定与某些事件(用于清除事件的 TextChanged 和 Unloading)来设置 Margin。通过使用 TextBoxes Tag 属性,我保留了原始边距,就我而言,我只担心右边距。

public class TextBoxMarginConverter : IValueConverter
{
    private const double TEXTBOX_MARGIN_RIGHT = 25.0;

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
      if (value == null)
      {
        return double.NaN;
      }

      TextBox textBox = value as TextBox;

      if (textBox == null)
      {
        return double.NaN;
      }

      if (Validation.GetHasError(textBox))
      {
        this.SetTextBoxMargin(TEXTBOX_MARGIN_RIGHT, textBox);
      }

      return textBox.Width;
    }

    private void SetTextBoxMargin(double marginRight, TextBox textBox)
    {
      if (textBox.Tag == null)
      {
        textBox.TextChanged += new TextChangedEventHandler(this.TextBoxTextChanged);

        textBox.Unloaded += new RoutedEventHandler(this.TextBoxUnloaded);

        double right = textBox.Margin.Right + marginRight;

        textBox.Tag = textBox.Margin.Right;

        textBox.Margin = new Thickness(textBox.Margin.Left, textBox.Margin.Top, right, textBox.Margin.Bottom);
      }
    }

    private void TextBoxUnloaded(object sender, RoutedEventArgs e)
    {
      TextBox textBox = sender as TextBox;

      if (textBox == null)
      {
        return;
      }

      textBox.TextChanged -= new TextChangedEventHandler(this.TextBoxTextChanged);

      textBox.Unloaded -= new RoutedEventHandler(this.TextBoxUnloaded);
    }

    private void TextBoxTextChanged(object sender, TextChangedEventArgs e)
    {
      TextBox textBox = sender as TextBox;

      if (textBox == null)
      {
        return;
      }

      if (Validation.GetHasError(textBox))
      {
        this.SetTextBoxMargin(TEXTBOX_MARGIN_RIGHT, textBox);

        return;
      }

      if (textBox.Tag != null)
      {
        double tag;

        double.TryParse(textBox.Tag.ToString(), out tag);

        textBox.Tag = null;

        textBox.Margin = new Thickness(textBox.Margin.Left, textBox.Margin.Top, tag, textBox.Margin.Bottom);
      }
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
      throw new NotImplementedException();
    }
}

在您的 Validation.ErrorTemplate 中,将转换器应用于 Validation.HasError 触发器:

<Style.Triggers>
  <Trigger Property="Validation.HasError" Value="true">
    <Setter Property="Width" Value="{Binding Converter={StaticResource TextBoxMarginConverter}, RelativeSource={RelativeSource Self}}"/>
    <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem.ErrorContent}"/>
  </Trigger>
</Style.Triggers>
于 2012-07-06T13:51:55.993 回答