在我使用的 wpf 窗口DataContext="{Binding RelativeSource={RelativeSource Self}}"
中,我可以绑定到例如 UserControl UserControl="{Binding ElementName=Information}"
。
当我删除 DataContext 行时,绑定到 ElementName 也有效。
此外,当我设置另一个 DataContext 时,例如this.DataContext = new MainViewModel();
它可以工作。
那么当不使用 DataContext 时,如何通过 ElementName 进行绑定?