I'm writing a Phone 7 app and I would like to reference constant values in markup. I believe the way one is supposed to do this is via x:Static.
However, Visual Studio keeps claiming it has no knowledge of x:static. What is the secret sauce here? I have the following:
<phone:PhoneApplicationPage
...
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
<Image Height="{x:Static App.ImageHeight}" ... />
...
And of course:
public partial class App : Application
{
public const double ImageHeight = 100;
...
The error message is "The type 'x:Static' was not found. Verify that...".