Tagged Questions

A property in WPF and Silverlight that supports databinding, including styles, inheritance, animation, and default values. It allows you to set attached properties on DependencyObject.

learn more… | top users | synonyms (1)

110
votes
14answers
21k 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 ...
15
votes
2answers
4k 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?
14
votes
3answers
1k views

What is the difference between Property and Dependency Property

Dependency properties are created the same way as properties. Is a dependency property used only while creating a custom control?
14
votes
2answers
4k views

What's the difference between a dependency property and an attached property in WPF?

What's the difference between a (custom) dependency property and an attached property in WPF? What are the uses for each? How do the implementations typically differ?
13
votes
7answers
462 views

Demystifying Dependency Properties

I have read about dependency properties a lot on SO and other sites. But, really haven't found a great explanation and am still confused. I use both SL and WPF. Are they different in SL and WPF, in ...
13
votes
2answers
2k views

Why dependency properties?

Why did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?
13
votes
5answers
7k views

Hiding inherited members in C#

I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency ...
10
votes
5answers
697 views

Need a short and clear definition for “Dependency Properties”

I'm trying to figure out what exactly Dependency Properties are, but when I look anywhere for a definition, I only find "how to use" but not "what it is". Imagine you are asked on a job interview - ...
9
votes
1answer
808 views

Whats the difference between Dependency Property SetValue() & SetCurrentValue()

The reason why I am asking this is because I was recommended by @Greg D (from this question) to use SetCurrentValue() instead, but a look at the docs and didn't see whats the difference. Or whats does ...
9
votes
1answer
298 views

What are the main drawbacks of exposing a DependencyProperty via a static property instead of a static field? (F#)

I found out that F# 2.0 apparently doesn't support public static fields anymore, which makes impossible the standard way of implementing a DependencyProperty: public static readonly FooProperty = ...
9
votes
3answers
4k views

DependencyProperty.Register() or .RegisterAttached()

What's the difference between the two, when should RegisterAttached() be used instead of .Register()?
9
votes
5answers
8k views

Java .properties file, how to reference already defined property later, dir.default=/home/data/in/

## define a default directory for Input files dir.default=/home/data/in/ dir.proj1=dir.default /p1 dir.proj2=dir.default /p2 dir.proj3=dir.default /p3 is this possible?
8
votes
2answers
380 views

Does Binding work ONLY with DependencyProperty?

MSDN says, Each binding typically has these four components: a binding target object, a target property, a binding source, and a Path to the value in the binding source to use. For ...
8
votes
2answers
1k 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 ...
7
votes
4answers
297 views

Difference between Attached and non-Attached Dependency Properties in Silverlight

Okay Stackers, I've spent a good couple of hours on this question, and I want to know if anybody has a definitive answer. For all the research I've done, I can't find ANY difference between .Register ...
7
votes
3answers
389 views

How to propagate PropertyChanged changes in DependencyProperty

I have a class which implements INotifyPropertyChanged. An instance of this class is declared as a DependencyProperty in a Window, e.g., public IMyClass MyClass { get { return ...
7
votes
1answer
76 views

Why can I access DependencyProperties that are not registered on my DependencyObject?

I'm hoping someone can explain some unexpected behaviour I have come across whilst continuing my exploration of DependencyObjects and DependencyProperties. Given the following simple class: ...
6
votes
3answers
183 views

How does the WPF dependency property design save memory consumption?

I read this in the following link:- http://www.informit.com/articles/article.aspx?p=688529&seqNum=2 However, because GetValue and SetValue internally use an efficient sparse storage ...
6
votes
1answer
178 views

Limit attached dependency property in wpf

I want to attach a dependency property to specific controls only. If that is just one type, I can do this: public static readonly DependencyProperty MyPropertyProperty = ...
6
votes
4answers
133 views

How is the WPF property system economical?

It is said that the designers of WPF have made it economical or higher performance. Can someone please explain with an example of what happens under the hood that makes the WPF property system more ...
6
votes
1answer
1k views

WPF: Collection dependency property “is read-only and cannot be set from markup”

I am creating a user control to display a three-month calendar. The control is based on the WPF Calendar control (WPF Toolkit 2009-06), and I want to pass several of the Calendar's properties through ...
6
votes
3answers
2k views

WPF ReadOnly Dependency Properties using MVVM

I've recently overridden the DevXpress WPF grid to give myself a SelectedObject property that I can access from my loosely bound ViewModel. I've made a SelectedObject dependency property and have it ...
6
votes
1answer
2k views

Why Would a Dependency-Property Implementation Crash My Application When I Provide a Default Value?

Why would a dependency-property implementation crash my application when I provide a default value? This segment of code is in the class declaration for my UserControl object. Everything works fine ...
6
votes
1answer
1k 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 ...
6
votes
5answers
7k 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 ...
5
votes
2answers
57 views

Dependency property List<string> in UserControl

I have a dependency property(List of string) in a user control in my dot net assembly as below public partial class ItemSelectionUserControl : UserControl { public List<string> ...
5
votes
2answers
82 views

In WPF do DependencyProperty's cause lots of boxing/unboxing when used with value types?

In WPF do DependencyProperty's cause lots of boxing/unboxing when used with value types? Or does the implementation some how to prevent this and not box/unbox value types? Is so how do they do this? ...
5
votes
3answers
160 views

How is WPF's DependencyObject implemented?

Are there any articles that describe how the DependencyObject class in WPF works "under the hood"? Specifically, I'm curious about how dependency properties are stored and accessed efficiently.
5
votes
3answers
127 views

WPF Data Binding Architecture Question

I'm trying to learn how to use WPF binding and the MVVM architecture. I'm running into some trouble with Dependency Properties. I've tried to control the visibility of an item on the view by binding ...
5
votes
1answer
195 views

What use is a DependencyProperty whose ownerType is not a DependencyObject?

I've just started playing with DependencyProperties in WPF and I was wanting to check a couple of thoughts while I get to grips with them. Given the following (and ignoring naming convention for ...
5
votes
1answer
667 views

Dependency Property Binding and Update in Custom Control

I have created a simplified version of my code that experiences the same issue. The issue is that I'm not sure why the dependency property in my custom control is not updating when it gets changed in ...
5
votes
4answers
321 views

why don't people wrap DependencyProperties in a generic class?

I didn't like how verbose dp's are, since most of the code is just repeated, I just wrapped it in a generic class. Having seen quite allot of sample code, I was wondering why more people aren't ...
5
votes
2answers
645 views

Spring bean fields injection

Using Spring IoC allows to set bean properties exposed via setters: public class Bean { private String value; public void setValue(String value) { this.value = value; } } And ...
5
votes
2answers
290 views

wpf how to tell when databinding has finished?

I've got a custom control which has a DependencyProperty MyAnimal - I'm binding an Animal Property on my ViewModel to the MyAnimal DependencyProperty. I've stuck a TextBox on the Control so I can ...
5
votes
2answers
929 views

Dependency Property dependent on another

How can one register a dependency property whose value is calculated using the value of another dependency property? Because the .NET property wrappers are bypassed by WPF at run-time, one should not ...
5
votes
2answers
495 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 ...
4
votes
1answer
45 views

Why do some properties need a default defined in the style before a DataTrigger takes effect?

Why is it that some dependency properties need to have a default setter in the style before the triggered setters will take effect? For example, <ContentControl> ...
4
votes
2answers
76 views

Are CLR wrappers for dependency properties optional or not?

I was under the impression that CLR wrappers for dependency properties were optional under WPF, and just useful for setting within your own code. However, I have created a UserControl without ...
4
votes
2answers
73 views

Dependency Properties that use the property afterwards?

I'm trying to set up a dependency property which is of an object called a Sprite, a sprite contains a string of a spriteSheet, so i want to be able to pass a Sprite and then that data is used to ...
4
votes
1answer
111 views

DependencyProperty doesn't fire ValueChanged when new value is the same

Ok so here's the problem: I wrote a UserControl which receives a new value say like every 100ms and does something with it. It has to handle each new value setter, even if the value didn't change. The ...
4
votes
4answers
110 views

How do I programmatically read the value of an attached dependency property?

So I have a Button with an AutomationId (used by Microsoft UI Automation) like so: <Button Name="myButton" AutomationId="myButtonAutomationID" Programmatically, I have the button (myButton) in ...
4
votes
2answers
151 views

WPF Binding within an AttachedProperty of Type Collection to an other Element

I want to create an AttachedProperty of Type Collection, which contains references to other existing elements, as shown below: <Window x:Class="myNamespace.MainWindow" ...
4
votes
4answers
309 views

Why Dependency property are declared as static readonly?

It is clear to me why dependency property are static and the question still remain on my mind is why we need to use Readonly keyword at the time of declaration of Dependency Property.
4
votes
1answer
256 views

WPF Custom Control - How do you unit test a custom control?

Basically, I'm looking for resources/guides on how to unit test a WPF Custom Control. In this particular instance, the custom control I created happens to extend the Decorator class. It wraps a ...
4
votes
1answer
88 views

How does the Silverlight/WPF runtime know how to set a dependency property?

So I think I understand what a dependency property is and why we need them - they are properties managed by the Silverlight/WPF libraries such that the runtime can have some control over how they are ...
4
votes
2answers
117 views

Logically combine dependency properties

I'm using C# 4.0 and have created a DependencyObject MyView. In MyView, I have two DependencyProperties, PropA and PropB, both are booleans. I want a third DependencyProperty, PropC, also a bool, ...
4
votes
2answers
1k views

WPF Binding to variable / DependencyProperty

I'm playing around with WPF Binding and variables. Apparently one can only bind DependencyProperties. I have come up with the following, which works perfectly fine: The code-behind file: public ...
4
votes
2answers
357 views

Setters not run on Dependency Properties?

Just a short question, to clarify some doubts. Are setters not run when an element is bound to a dependency property? public string TextContent { get { return ...
4
votes
2answers
232 views

C#: Extending from more than 1 class

Suppose I have a ViewModel TabViewModel that Extends ObservableObject the class for ViewModels in the MVVM Foundation Framework. Then I also have a EditorTabViewModel that extends TabViewModel, Now I ...
4
votes
2answers
98 views

Is it appropriate to thrown an exception from CoerceValueCallback

Is it appropriate to throw an exception from a CoerceValueCallback if a given value is invalid or should only ValidateValueCallback be used for DP-value-validation?

1 2 3 4 5 14