A property in WPF and Silverlight that can be set through methods such as, styling, data binding, animation, and inheritance.
I have the following code to subscribe to property changed event for VisiblePosition property of Column class: DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.…
wpf dependency-propertiesI would like to make it so that, as default, when I bind to one of my dependency properties the …
c# data-binding dependency-propertiesI am trying to do some sample applications to use Dependency Property in a DataGrid,but when i tried to …
silverlight silverlight-4.0 mvvm dependency-properties attached-propertiesI have a weird error I'm trying to debug with no luck. I have subclassed hwndhost showing some content, I …
wpf dependency-properties hwndhostAre there any articles that describe how the DependencyObject class in WPF works "under the hood"? Specifically, I'm curious about …
c# wpf dependency-properties dependencyobjectJust a short question, to clarify some doubts. Are setters not run when an element is bound to a dependency …
wpf dependency-properties setterI have a attached property of type ObservableCollection on a control. If I add or remove items from the collection, …
wpf dependency-properties observablecollectionSuppose you have a class inheriting from ValidationRule: public class MyValidationRule : ValidationRule { public string ValidationType { get; set; } public override ValidationResult …
wpf validation dependency-propertiesI created a Dependency Property in the usercontrol, but however changes in the usercontrol was NOT notified to the Viewmodel …
c# wpf user-controls dependency-propertiesDo folks have any guidance on when a simple .NET property that fires INotifyPropertyChanged.PropertyChanged is sufficient in a view …
wpf binding dependency-properties inotifypropertychanged