I have a boolean flag in my DataContext which I would like a child control to use.
Problem:
I have a child control which uses it's own datasource. Hence, the datacontext of the entire page is not visibile to it. The child control needs to access this one property of the windows datacontext.
I have managed to use a static boolean value by sing a resource. The problem is that this resource is static (not bound to the datacontext)
Can I bind the value somehow to the datacontext? Is there another way to do this?