9

UIElement添付プロパティを使用して、イベントが発生したときにスタイルの変更をトリガーしようとしています。

ケースシナリオは次のとおりです。

ユーザーはを見てTextBox、焦点を合わせてから焦点を外します。アタッチされたプロパティのどこかで、このLostFocusイベントに気づき、プロパティ(どこか?)にそれを設定しますHadFocus

TextBoxのスタイルは、このHadFocusプロパティに基づいてスタイルを変える必要があることを認識しています。

これが、マークアップがどのように見えるかを想像する方法です...

<TextBox Behaviors:UIElementBehaviors.ObserveFocus="True">
<TextBox.Style>
    <Style TargetType="TextBox">
        <Style.Triggers>
            <Trigger Property="Behaviors:UIElementBehaviors.HadFocus" Value="True">
                <Setter Property="Background" Value="Pink"/>
            </Trigger>
        </Style.Triggers>
    </Style>
</TextBox.Style>

これを機能させるために、添付されたプロパティのいくつかの組み合わせを試しましたが、最近の試みでは、「トリガーでプロパティをnullにすることはできません」というメッセージが表示されますXamlParseException

    public class UIElementBehaviors
{
    public static readonly DependencyProperty ObserveFocusProperty =
        DependencyProperty.RegisterAttached("ObserveFocus",
                                            typeof (bool),
                                            typeof (UIElementBehaviors),
                                            new UIPropertyMetadata(false, OnObserveFocusChanged));
    public static bool GetObserveFocus(DependencyObject obj)
    {
        return (bool) obj.GetValue(ObserveFocusProperty);
    }
    public static void SetObserveFocus(DependencyObject obj, bool value)
    {
        obj.SetValue(ObserveFocusProperty, value);
    }

    private static void OnObserveFocusChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        var element = d as UIElement;
        if (element == null) return;

        element.LostFocus += OnElementLostFocus;
    }
    static void OnElementLostFocus(object sender, RoutedEventArgs e)
    {
        var element = sender as UIElement;
        if (element == null) return;

        SetHadFocus(sender as DependencyObject, true);

        element.LostFocus -= OnElementLostFocus;
    }

    private static readonly DependencyPropertyKey HadFocusPropertyKey =
        DependencyProperty.RegisterAttachedReadOnly("HadFocusKey",
                                                    typeof(bool),
                                                    typeof(UIElementBehaviors),
                                                    new FrameworkPropertyMetadata(false));

    public static readonly DependencyProperty HadFocusProperty = HadFocusPropertyKey.DependencyProperty;
    public static bool GetHadFocus(DependencyObject obj)
    {
        return (bool)obj.GetValue(HadFocusProperty);
    }

    private static void SetHadFocus(DependencyObject obj, bool value)
    {
        obj.SetValue(HadFocusPropertyKey, value);
    }
}

私を導くことができる人はいますか?

4

1 に答える 1

5

Key読み取り専用の依存関係プロパティを登録しても、プロパティ名に追加するわけではありません。交換するだけ

DependencyProperty.RegisterAttachedReadOnly("HadFocusKey", ...);

DependencyProperty.RegisterAttachedReadOnly("HadFocus", ...);

以来HadFocus、プロパティの名前です。

于 2012-05-22T14:02:03.493 に答える