A property in WPF and Silverlight that can be set through methods such as, styling, data binding, animation, and inheritance.
I am learning dependency properties. I read many posts & books but still I am not clear. The program shown …
.net wpf dependency-propertiesWhy did Microsoft go the route of making dependency properties and dependency objects instead of using reflection and maybe attributes?
wpf silverlight dependency-propertiesI have created a UserControl with some DependencyProperties (in the example here only one string property). When I instantiate the …
c# wpf binding user-controls dependency-propertiesI'm trying to get a DependencyProperty working in WPF. I'm using: public static readonly DependencyProperty DisplayModeProperty = DependencyProperty.Register("DisplayMode", typeof (…
wpf binding dependency-properties default-valueThe reason why I am asking this is because I was recommended by @Greg D (from this question) to use …
wpf dependency-properties setvalue setcurrentvalueI have a usercontrol with a dependency property. public sealed partial class PenMenu : UserControl, INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; protected …
c# windows-store-apps winrt-xaml dependency-properties windows-8.1I'm creating a WPF app using the MVVM design pattern, and I'm trying to extend the TabItem control so that …
wpf mvvm dependency-properties inputbindingMy goal is to manipulate the text-styles of my application via DependencyProperties. I got a diagram in which the texts …
wpf combobox dependency-properties attached-propertiesI have a control which inherits from (you guessed it) Control. I want to receive a notification whenever the FontSize …
silverlight dependency-propertiesUsing Spring IoC allows to set bean properties exposed via setters: public class Bean { private String value; public void setValue(…
java spring inversion-of-control dependency-properties javabeans