Could Someone help me to find out why l.X1 is set to default value(0.0) when the binded source is having a value of 156. Following image may be self explanatory.
A:
Where tag property is assigned in the code, can you please post that code also?
saurabh
2010-10-05 13:08:22
l.Tag = p;where p is a point taken from an XML
async
2010-10-05 13:11:15
A:
http://forums.silverlight.net/forums/t/66005.aspx
I don't think you can use a DependencyProperty as a BindingSource in SilverLight. See the link above.
Les
2010-10-05 13:38:24
Just curious,Why Framworkelement exposes a method named SetBinding(dp,binding).when it is not supported
async
2010-10-05 13:50:59
My understanding is the WPF does support SetBinding() to DependencyProperty objects in the Binding.Source, but that Silverlight does not. I won't swear to it, though. Can you mock up a test with WPF?
Les
2010-10-05 23:46:35
These missing lines in the CLR set methods were causing that odd result. In set methods I played with a different attached property.SetValue(CenterXProperty, value);SetValue(CenterYProperty, value);
async
2010-10-06 05:28:00