vote up 4 vote down star

I have a list box that displays items based on an xpath.

This xpath changes depending on user selection elsewhere in the gui. The xpath always refers to the same document.

At the moment i use some c# code behind to change the binding of the control to a new xpath expression.

I'd like instead to bind in xaml to an xpath and then change the value of that xpath as required.

How would i do that?

flag

67% accept rate
Can you please post or provide a link to some XAML that we can see as an example of what you are doing currently? – spoon16 Sep 19 '08 at 23:53

1 Answer

vote up 2 vote down

I think that you're trying to over complicate the problem. But have you thought about allocating the XPath to a dynamic resource:

<.... ={Binding XPath={DynamicResource:res resource-name}} ... />

The best place to read about all-binding is Beatriz's blog: http://www.beacosta.com/blog/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.