I am trying to set up a binding to an explicitly implemented interface property from code-behind. The reason for the code-behind binding is that the path to the bound property can only be determined at run-time.
In the XAML, it is possible to bind thusly (example in MainWindow.xaml):
<TextBox Text="{Binding (local:IViewModel.Property)}"/>
and in fact, binding in the code behind works in a similar way (from MainWindow.xaml.cs):
var binding = new Binding("(local:IViewModel.Property)");
since WPF is able to pick up the namespace mapping.
My question is, how do I form a binding like this when the namespace mapping is not present (for example, in an attached behaviour)?
Many thanks in advance!
You would specify a full
PropertyPath:For details on the syntax passed to
PropertyPathabove, seePropertyPath.Path.