I\'m new to WPF and have a confusion about wrapping syntax of routed events and dependency properties
I\'m trying to make an intertia touch scrolling list in a UserControl in Silverlight 4 using Expression Blend 4. I\'ve already made the dependency properties in my UserControl which i want to work lik
I was under the impression that CLR wrappers for dependency properties were optional under WPF, and just useful for setting within your own code.
I\'ve created a DependencyProperty on my derived AutoCompleteBox control --> IsReadOnly From there, I\'m trying to set the value (T/F) via a converter. Based on the converter value, I would like to u
I\'m trying to get the WebBrowser control to display HTML loaded from a variable. I found this solution Displaying html from string in WPF WebBrowser control so am trying to implement my first Depende
I have the exact problem as this guy in the Silverlight Forum and the accepted answer is : In this case, your property didn\'t actually change value.You added
have this code public int SelectedPage { get { return (int)GetValue(SelectedPageeProperty); } set { SetValue(SelectedPageeProperty, value);
I have a custom line shape with start and end point. The ActualWidth and ActualHeight properties however do not return the correct value, that is the difference between the points. Is there a way to o
I\'m trying to bind a data value to an attached property. However, it just dont get it to work. I defined it like:
My question concerns Silverlight (but I guess WPF as well). Basically I know, how to create dependency property in a user control and how to make it work. But what i was trying to do, and didn\'t suc