1

私はこの問題を解決するためにあらゆることを試みてきました。:(

TextBoxの場合、検証エラーが発生している間、テキストボックスの右側に画像を含むValidation.ErrorTemplateセットアップがあります。

これはうまくいきます!しかし、私がやりたいことの1つは、エラーのあるテキストボックスのマージンをサイズ変更または設定して、フォーム上のテキストボックスのスペースに収まるようにすることです。現在、画像はテキストボックス領域の外に流れています。

私が本当に欲しいのは、エラーのあるテキストボックスがエラーのないテキストボックスと同じスペースを占めることです。

これが私の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

この問題に直面する可能性のある人を助けたいと思っています。

Validation.HasError トリガー中に Margin プロパティが変更されない理由はまだわかりませんが、汚い回避策を見つけました。

回避策は、IValueConverter を使用して Margin を設定するいくつかのイベント (イベントのクリーンアップのための TextChanged および Unloading) で Width プロパティ バインディングをハイジャックします。私は元の 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 に答える