我有一个控件来自CONTROL,我在控件中有一些额外的属性。在这个控件模板中,我有如下控件。
<Controls:FieldControl Value={Binding Path=Value,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay >
<ControlTemplate>
<Controls:FieldControl x:Name="ctrl" Value="{Binding Path=Value,RelativeSource={RelativeSource TemplatedParent},Mode=TwoWay}" Validation.ErrorTemplate={dynamicResource myErrorTemplate} />
</ControlTemplate>
</Controls:FieldControl>
关于验证错误我能够在父控件中看到错误,但它没有传递给子控件(“ctrl”)。如何在子控件中出现错误以及如何应用errorTemplate对于儿童控制。