10

我在基于 WPF 和 MVVM 的项目中使用了 AvalonEdit。阅读这篇文章后,我创建了以下类:

public class MvvmTextEditor : TextEditor, INotifyPropertyChanged
{
    public static DependencyProperty DocumentTextProperty =
        DependencyProperty.Register("DocumentText", 
                                    typeof(string), typeof(MvvmTextEditor),
        new PropertyMetadata((obj, args) =>
        {
            MvvmTextEditor target = (MvvmTextEditor)obj;
            target.DocumentText = (string)args.NewValue;
        })
    );

    public string DocumentText
    {
        get { return base.Text; }
        set { base.Text = value; }
    }

    protected override void OnTextChanged(EventArgs e)
    {
        RaisePropertyChanged("DocumentText");
        base.OnTextChanged(e);
    }

    public event PropertyChangedEventHandler PropertyChanged;
    public void RaisePropertyChanged(string info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }
}

并使用以下 XAML 来使用此控件:

<avalonedit:MvvmTextEditor x:Name="xmlMessage">
   <avalonedit:MvvmTextEditor.DocumentText>
      <Binding Path ="MessageXml" Mode="TwoWay" 
               UpdateSourceTrigger="PropertyChanged">
         <Binding.ValidationRules>
            <local:XMLMessageValidationRule />
          </Binding.ValidationRules>
      </Binding>
   </avalonedit:MvvmTextEditor.DocumentText>
</avalonedit:MvvmTextEditor>

但绑定有效OneWay,不会更新我的字符串属性,也不会运行验证规则。

如何修复绑定以按预期工作TwoWay

4

3 回答 3

8

WPF 绑定不使用您的DocumentText属性;相反,它们直接访问依赖属性的底层值。

您的OnTextChanged方法实际上并没有改变底层依赖属性的值。您需要在每次更改时将值复制base.Text到依赖属性中:

protected override void OnTextChanged(EventArgs e)
{
    SetCurrentValue(DocumentTextProperty, base.Text);
    base.OnTextChanged(e);
}

如果您遵循正确的实施模式,这个问题会更容易看出DependencyProperty:该DocumentText属性应该使用GetValue/SetValue方法,而不是访问不同的后备存储。

于 2013-02-13T21:27:09.577 回答
4

即使使用 GetValue 和 SetValue 您也无法在文本更改时让 TextProperty 更新绑定,因此无论如何都必须遵循 Daniel 的回答。

我确实进行了一些更改,以使最终用户更直观地必须将 Text 用作正常和依赖模式:

    public new string Text
    {
        get { return (string)GetValue(TextProperty); }
        set { SetValue(TextProperty, value); }
    }

    internal string baseText { get { return base.Text; } set { base.Text = value; } }

    public static DependencyProperty TextProperty =
    DependencyProperty.Register("Text", typeof(string), typeof(MvvmTextEditor),
        // binding changed callback: set value of underlying property
        new PropertyMetadata((obj, args) =>
        {
            MvvmTextEditor target = (MvvmTextEditor)obj;
            if(target.baseText != (string)args.NewValue)    //avoid undo stack overflow
                target.baseText = (string)args.NewValue;
        })
    );

    protected override void OnTextChanged(EventArgs e)
    {            
        SetCurrentValue(TextProperty, baseText);
        RaisePropertyChanged("Text");
        base.OnTextChanged(e);
    }

我必须检查是否已经存在相同的文本以避免撤消堆栈引擎异常。性能方面也很划算。

于 2014-04-09T15:41:11.510 回答
2

我根据上面的答案尝试了代码并稍作修改,因为绑定对我来说两种方式都不起作用。下面的内容应该允许绑定两种方式。

    public static readonly DependencyProperty MyContentProperty = DependencyProperty.Register(
        "MyContent", typeof(string), typeof(MyTextEditor), new PropertyMetadata("", OnMyContentChanged));

    private static void OnMyContentChanged(object sender, DependencyPropertyChangedEventArgs e)
    {
        var control = (MyTextEditor)sender;
        if (string.Compare(control.MyContent, e.NewValue.ToString()) != 0)
        {
            //avoid undo stack overflow
            control.MyContent = e.NewValue.ToString();
        }
    }

    public string MyContent
    {
        get { return Text; }
        set { Text = value; }
    }

    protected override void OnTextChanged(EventArgs e)
    {
        SetCurrentValue(MyContentProperty, Text);
        base.OnTextChanged(e);
    }
于 2015-01-16T09:58:25.397 回答