Tagged Questions
The dependency-object tag has no wiki summary.
5
votes
2answers
499 views
Customizing The DependencyObject Inheritance Tree
I'm struggling to find sufficient information about the property Inheritance Tree (or Inheritence Context) used by DependencyObject and DependencyProperty.
I would like to use the value inheritence ...
3
votes
1answer
308 views
Given a styled WPF DependencyObject, how can I get the Style Key in code?
I have a set of controls bound to data, on which I would like to programmaticaly add validators to the bindings. Currently I'm able to iterate over the visual tree to find those controls with ...
1
vote
1answer
112 views
How to determine whether a dependency object implements a given dependency property (C# / WPF)
I am working with the classes in the System.Windows.Documents namespace, trying to write some generic code that will conditionally set the value of certain dependency properties, depending on whether ...
0
votes
1answer
152 views
Call bindings for DependencyObject when DependencyProperites are changed
Is there a way to notify a DependencyObject's bindinigs when the inner DependencyProperties have changed?
For example, I have this class:
public class BackgroundDef : DependencyObject
{
...