我有一个作为excel插件运行的WPF应用程序,它有像这样的可视树
现在,在excel中加载插件时,不会启用位于WPF功能区栏控件上的任何控件。见下面的错误
System.Windows.Data Error: 4 : Cannot find source for binding with
reference 'RelativeSource FindAncestor, AncestorType='System.Windows.Window', AncestorLevel='1''. BindingExpression:Path=IsActive; DataItem=null; target element
is 'Ribbon' (Name=''); target property is 'NoTarget' (type 'Object')
如果我将功能区控件嵌套在独立窗口(excel外部)中,它可以正常工作。
有没有办法拦截一个Window的FindAncestor调用并将其连接到其他东西。请注意,我无法更改上述绑定,因为它不是我的控制。
答案 0 :(得分:2)
最直接的答案
FindAncestor由WPF内部处理,并且会在前往其他任何地方之前尽可能地搜索可视化树。只有当它到达没有可视父级的Visual时才会在其他地方搜索,这取决于它到达了什么。例如,如果它命中FrameworkContentElement,它可以转到文档的容器。不幸的是,如果可视化树的顶部是ElementHost,它将停止,因此无法重新路由该呼叫。
这意味着您最简单的选择是替换绑定。幸运的是,这并不是很困难。
如何自动替换绑定
这是我后来写的一个简单的方法,它通过可视树搜索并替换updateFunction指示的绑定。如果updateFunction返回的绑定与传递的绑定不同,则绑定会更新。
static void UpdateBindings(Visual visual, Func<Binding, Binding> updateFunction)
{
if(visual==null) return;
for(int i=0; i<VisualTreeHelper.GetChildrenCount(visual); i++)
UpdateBindings(VisualTreeHelper.GetChild(visual, i) as Visual, updateFunction);
for(var enumerator = visual.GetLocalValueEnumerator(); enumerator.MoveNext(); )
{
var property = enumerator.Current.Property;
var binding = BindingOperations.GetBinding(visual, property);
if(binding==null) continue;
var newBinding = updateFunction(binding);
if(newBinding!=binding)
BindingOperations.SetBinding(visual, property, newBinding);
}
}
为了说明这是如何工作的,下面是如何编写一个方法来替换所有RelativeSource FindAncestor实例中的特定AncestorType,如下所示:
static void ReplaceFindAncestorType(Visual visual, Type fromType, Type toType)
{
UpdateBindings(visual, binding =>
binding.RelativeSource.Mode != RelativeSourceMode.FindAncestor ? binding :
binding.RelativeSource.AncestorType != fromType ? binding :
new Binding
{
RelativeSource = new RelativeSource(
RelativeSourceMode.FindAncestor,
toType,
binding.RelativeSource.AncestorLevel),
Path = binding.Path,
Mode = binding.Mode,
Converter = binding.Converter,
StringFormat = binding.StringFormat,
UpdateSourceTrigger = binding.UpdateSourceTrigger,
});
}
请注意,只有常用属性才会复制到新绑定。
可以使用ReplaceFindAncestorVisualType方法:
elementHost.LayoutUpdated += (obj, e) =>
{
ReplaceFindAncestorType(elementHost, typeof(Window), typeof(ElementHost);
};
在您的情况下,这种通用替换技术将不起作用:它将在您的ElementHost上查找不存在的IsActive属性。因此,您可能需要更改不仅仅是RelativeSource。这意味着您的实际代码将更像是这样:
elementHost.LayoutUpdated += (obj, e) =>
{
UpdateBindings(elementHost, binding =>
binding.RelativeSource.AncestorType != typeof(Window) ? binding :
new Binding
{
Source = ultimateContainingWindowOrOtherObjectHavingIsActiveProperty,
Path = new PropertyPath("IsActive"), // Put property name here
});
};
请注意,上面的代码假设任何FindAncestor:Window绑定是我们正在寻找的。可以根据需要在条件中添加更多条件。
替代解决方案
还有另一种完全不同的解决方案:可以在无边界窗口中实际托管内容并添加自定义代码以使此窗口位于ElementHost上方,使其看起来位于另一个窗口内。这比听起来更棘手,因为你必须处理诸如ActiveWindow,ForegroundWindow,Z Order,Minimized state,键盘焦点等等。但如果你的需求非常简单,这可能是一个合理的解决方案。
答案 1 :(得分:0)
在Excel中使用控件时,祖先中没有Window,但是,也许您可以使用Snoop查找绑定的定义位置,然后在运行时查找依赖项对象(按类型)并更改其属性的绑定表达式?
答案 2 :(得分:0)
另一种选择是添加一个从Window继承作为祖先的自定义控件,然后将其绑定到Excel控件。