背景
由于引用dll不一致导致的大坑,差点没跳出来。我们知道,halcon 有两个dll:
halcondotnet和halcondotnetxl。 平时用的都是halcondotnet,halcondotnetxl时为了应付大图。
比如线扫相机扫出的大图。
踩坑
我的主项目中用到的halcondotnet,子项目中使用的halcondotnetxl。
子项目里有个控件ROIWindowCtrl,里面包含了HSmartWindowControlWPF这个控件。
我在主项目中,想通过FindVisualTree 的方式找到这个控件(HSmartWindowControlWPF)
//窗口加载事件EventLoadedCommand = new DelegateCommand<RoutedEventArgs>(e =>{DependencyObject obj = e.OriginalSource as DependencyObject;if (obj != null){var roi = FindVisualTree.GetChildObjectFirst<ROIWindowCtrl>(obj);hSmart = FindVisualTree.GetChildObjectFirst<HSmartWindowControlWPF>(roi);}});
这段代码之前用过很多次,(具体写法参考这篇文章