22
votes
9answers
3k views
INotifyPropertyChanged vs. DependencyProperty in ViewModel
When implementing the ViewModel in a Model-View-ViewModel architecture WPF application there seem to be two major choices how to make it databindable. I have seen implementations that use …
5
votes
2answers
127 views
Why dependency properties?
Why did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?
5
votes
3answers
319 views
How can I create a custom *write-only* dependency-property?
I need to know what the procedure is for making a write-only dependency-property. I can see that the DependencyProperty class does not have a special "Register" method for write-only properties, but I …
4
votes
2answers
95 views
Is it acceptable to “borrow” dependency properties from unrelated classes?
I'm writing a class that renders some content in WPF, and I want to give the user control over how the content is rendered. The rendering is mostly stroking lines, so I decided to look to the …
3
votes
1answer
124 views
Is there a better way to self reference a type?
I'm finding lately a lot of code smells related to referencing generic classes in C#. My gripes especially apply to those classes which inherit from DependencyObject and contain DependencyProperties.
…
3
votes
5answers
603 views
Silverlight: How to receive notification of a change in an inherited DependencyProperty
I have a control which inherits from (you guessed it) Control.
I want to receive a notification whenever the FontSize or Style properties are changed. In WPF, I would do that by calling …
3
votes
2answers
234 views
WPF - What conditions must be met to use data binding in a custom control’s content items?
I'm in the process of making a custom control -- specifically a pie chart. I want the markup to look something like this example:
<c:PieChart>
<!-- These dependency properties are never …
3
votes
2answers
329 views
What is a dependency property?
What is a dependency property in .Net (especially in WWF context). What is the difference from the regular property?
3
votes
2answers
200 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 …
2
votes
3answers
61 views
WPF: How to accept both string and FrameworkElement in dependency property (like wpf Label does)?
Hi, I am creating a custom WPF control that should have several content slots.
I'd like the user to be able to use either string, or a FrameworkElement as a value of property, for example:
<!-- …
2
votes
2answers
62 views
Can I make a dependency property that’s read-only?
I need this dependency property to be accessible for read operations only. Outside objects should not be able to assign values to it.
2
votes
2answers
109 views
Is there a *clean* way to make a read-only dependency-property reflect the value of another property?
The code below is my current solution.
If it takes you a couple minutes to figure out what this code is doing, I hear ya.
This is an ugly mess if ever there was one. I would kill to see an …
2
votes
1answer
197 views
How do You Create a Read-Only Dependency Property?
How do you create a read-only dependancy property? What are the best-practices for doing so?
Specifically, what's stumping me the most is the fact that there's no implementation of
…
2
votes
2answers
188 views
determine if a wpf dependencyproperty value is inherited
Does anyone know how to determine if the value of a WPF property is inherited? In particular, I'm trying to determine if the DataContext of a FrameworkElement was inherited from the parent or set …
2
votes
2answers
351 views
How do I make Binding respect DependencyProperty value coercion?
I have a control with a DependencyProperty with a CoerceValueCallback.
This property is bound to a property on a model object.
When setting the control property to a value that causes coercion the …
