Basically I’m trying to change the Canvas.Left property of an Ellipse Silverlight control in C#. Here is how I’m accessing the control:
Ellipse c1 = this.FindName('Circle1') as Ellipse;
How would I then set the Canvas.Left property?
Thanks,
Jeff
The answer lies in Silverlights use of Dependancy Properties
c1.SetValue(Canvas.LeftProperty, value);