-1

我创建了一个 UserControl MyTextBox : System.Windows.Controls.TextBox。我将自定义验证规则添加到数据绑定,并Validation.Error在 XAML 中定义了事件。

我想将Validation.Error事件移动到根(MyTextBox),以便我可以通用地处理它。我无法在 Usercontrol 实现这种方法。

任何人都可以帮忙吗?

4

1 回答 1

0

I got my question answer. Here is implementation at load event

//Check whether Designer mode is open. If not then set Custom binding
if ((bool)(DesignerProperties.IsInDesignModeProperty.GetMetadata(typeof(DependencyObject)).DefaultValue) == false)
        {
            SetBinding();
        }
于 2012-09-04T03:20:23.143 回答