This question is locked. New answers and comments are not allowed.
Hi there
Is there any way to use artificiel fields with the wpf binding concept?
I need to create a gui where a user can add user controls as he needs them. So I have a method which adds all the desired controls at runtime. Now I would like to use databinding from wpf like
Binding binding = new Binding("SelectedItem.ArtField01");binding.ElementName = "AddressSearchGrid";binding.Mode = BindingMode.TwoWay;txtb.SetBinding(TextBlock.TextProperty, binding);Is there any way of doing this?
Thank you, Mike Hachen