I'm setting up a Windows Phone 8 project and I've noticed that I can't use the short syntax to attach an action to a control, like for example:
<Button cal:Message.Attach="[EventName Click] = [Action ShowNameAction]" Content="Click" />
The cal namespace is defined like this:
xmlns:cal="http://www.caliburnproject.org"
When I launch the application, I get a XamlParseException complaining that no Attach property has been found for Message.
If I use the long syntax, instead, everything is working fine.
<Button cal:Message.Attach="[EventName Click] = [Action ShowNameAction]" Content="Click" />
The cal namespace is defined like this:
xmlns:cal="http://www.caliburnproject.org"
When I launch the application, I get a XamlParseException complaining that no Attach property has been found for Message.
If I use the long syntax, instead, everything is working fine.