HI there, I'm playing around with the new Windows Phone 7 SDK and have a prob here...
xaml
<Rectangle Fill="#FFFFEA00" Stroke="Black" Height="300" Width="300">
<Rectangle.Projection>
<PlaneProjection GlobalOffsetZ="{Binding Path=Test}" />
</Rectangle.Projection>
</Rectangle>
c#
private double test = 300;
public double Test
{
get { return test; }
set { test = value; }
}
public MainPage()
{
InitializeComponent();
this.DataContext = this;
}
result is a forced close on start and I don't understand why..