
Using XAML code from SyntaxEditor:
<docking:Workspace x:Name="workspace">
<DockPanel>
<editor:NavigableSymbolSelector x:Name="symbolSelector" DockPanel.Dock="Top" Margin="0,0,0,1" SyntaxEditor="{Binding ElementName=editor}" />
<!-- SyntaxEditor -->
<editor:SyntaxEditor x:Name="editor"
AreIndentationGuidesVisible="True"
AreWordWrapGlyphsVisible="True"
Yields the following Binding Error when the editor loads:
System.Windows.Data Error: 4 : Cannot find source for binding with reference 'ElementName=editor'. BindingExpression:(no path); DataItem=null; target element is 'NavigableSymbolSelector' (Name='symbolSelector'); target property is 'SyntaxEditor' (type 'SyntaxEditor')
Is this a "red herring" and I can ignore it?