1

TextBox の 'Tag' プロパティを使用して、テキストの検証のために無効な文字 (または最終的には正規表現文字列) を保存したいと考えています。私の簡単な例では、「A」のインスタンスの TextBox テキストをチェックしています。

次のように、カスタム ValidationRule と DependencyObjects を適切に設定しました。

これは機能します:

<validators:CheckStringWrapper CheckString="A" />

しかし、これは機能しません:

<validators:CheckStringWrapper CheckString="{Binding Tag,RelativeSource={RelativeSource Self}}" />

...次のエラーが発生します: System.Windows.Data Error: 40 : BindingExpression path error: 'Tag' プロパティが 'object' ''CheckStringWrapper' (HashCode=6677811)' に見つかりません。BindingExpression: パス = タグ; DataItem='CheckStringWrapper' (HashCode=6677811); ターゲット要素は 'CheckStringWrapper' (HashCode=6677811) です。ターゲット プロパティは 'CheckString' (タイプ 'String') です

完全なコード: XAML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!--  TextBox control with red border and icon image appearing at left with tool tip describing validation error  -->
<ControlTemplate x:Key="ValidatedTextBoxTemplate">
    <StackPanel Orientation="Horizontal">
        <Image Height="16"
               Margin="4,0,4,0"
               Source="~/Resources/exclamation.png"
               ToolTip="{Binding ElementName=ErrorAdorner,
                                 Path=AdornedElement.(Validation.Errors).CurrentItem.ErrorContent}" />
        <Border BorderBrush="Red"
                BorderThickness="1"
                DockPanel.Dock="Left">
            <AdornedElementPlaceholder Name="ErrorAdorner" />
        </Border>
    </StackPanel>
</ControlTemplate>
</ResourceDictionary>

<TextBox Name="MyTextBox"
            Tag="A"
            Validation.ErrorTemplate="{StaticResource ValidatedTextBoxTemplate}">
    <Binding Mode="TwoWay"
                NotifyOnValidationError="True"
                Path="NewLotName"
                UpdateSourceTrigger="PropertyChanged"
                ValidatesOnExceptions="True">
        <Binding.ValidationRules>
            <validators:InvalidFileNameChars />
            <validators:InvalidPathChars />
            <validators:CustomCharacterCheck>
                <validators:CustomCharacterCheck.Wrapper>
                    <!-- This Works: <validators:CheckStringWrapper CheckString="A" /> -->
                    <validators:CheckStringWrapper CheckString="{Binding Tag,RelativeSource={RelativeSource Self}}" />
                </validators:CustomCharacterCheck.Wrapper>
            </validators:CustomCharacterCheck>
        </Binding.ValidationRules>
    </Binding>
</TextBox>

クラス:

public class CustomCharacterCheck : ValidationRule
{
    public CheckStringWrapper Wrapper { get; set; }

    public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
    {
        string text = value.ToString();

        if (text.Contains(Wrapper.CheckString))
        {
            return new ValidationResult(false, "Bad Char");
        }

        return ValidationResult.ValidResult;
    }
}

public class CheckStringWrapper : DependencyObject
{
    public static readonly DependencyProperty CheckStringProperty = DependencyProperty.Register("CheckString", typeof(string), typeof(CheckStringWrapper));

    public string CheckString
    {

        get { return (string)GetValue(CheckStringProperty); }

        set { SetValue(CheckStringProperty, value); }

    }
}
4

0 に答える 0