1

我有两个控件,我UserControl使用元素绑定绑定到完全相同的对象:

AllowNext="{Binding ElementName=MainGrid, Path=DataContext.CanContinue}"

在第一个控件上它工作正常,但在第二个控件上我得到一个绑定异常:

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=MainGrid'. BindingExpression:Path=DataContext.CanContinue; DataItem=null; target element is 'WizardPage' (Name='DeductionPage'); target property is 'AllowNext' (type 'Boolean')

我还尝试RelativeSource在第二个控件上使用绑定:

AllowNext="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Grid}}, Path=DataContext.CanContinue}"

但这也给了我一个错误。

有谁知道这可能是什么?

--

这是简化的控制:

<Grid Name="MainGrid">
    <w:Wizard Name="MyWizard" w:Designer.PageIndex="1" DataContext="{Binding ElementName=MainGrid, Path=DataContext.Policy}" >
        <w:WizardPage Header="Main Member" MaxHeight="600" AllowNext="{Binding ElementName=MainGrid, Path=DataContext.CanContinue}" Name="MainPage">
        </w:WizardPage>
        <w:WizardPage Name="DeductionPage" Header="Policy Details" AllowBack="False" AllowNext="{Binding ElementName=MainGrid, Path=DataContext.CanContinue}">
        </w:WizardPage>
    </w:Wizard>
</Grid>

现在正如我所提到的,MainPage 绑定得很好,而 DeductionPage 根本没有绑定并得到提供的错误。MainGrid 的 DataContext 是从后面的代码中设置的:

    public void SetDataContext(object o)
{
  MainGrid.DataContext = o;
}
4

2 回答 2

0

我敢打赌,作为绑定源的 MainGrid 不在绑定目标的逻辑树中。

于 2013-02-18T08:31:16.130 回答
0

这绝对是绑定元素的问题。但是,您没有提供源代码,因此您想对其进行调试并解决问题。

请参阅下面的 url 和“ Cannot find source for binding with reference”部分,其中清楚地解释了如何调试和解决它。

http://www.codeproject.com/Articles/244107/Debugging-WPF-data-bindings

于 2013-02-18T08:40:01.103 回答