I would like to bind the methodname propererty of the caliburn.micro actionmessage to a method on a child object of the ViewModel.

How I would imagine it should work:

<i:Interaction.Triggers>
  <i:EventTrigger EventName="Click">
    <cal:ActionMessage MethodName="MenuItemX.Clicked" />
  </i:EventTrigger>
</i:Interaction.Triggers>

The problem here is that the methodname does not live directly on the viewmodel, but on a childobject of the viewmodel.

So in this case I would like to bind to: ViewModel.MenuItemX.Clicked()

Current workaround is having a pass-through method on my viewmodel which smells.

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You can set the actual target of the action (MenuItemX) using cal:Action.TargetWithoutContext attached property:

<Button cal:Action.TargetWithoutContext="{Binding MenuItemX}" >
  <i:Interaction.Triggers>
    <i:EventTrigger EventName="Click">
     <cal:ActionMessage MethodName="Clicked" />
   </i:EventTrigger>
  </i:Interaction.Triggers>
</Button>

or the shorter syntax:

<Button cal:Action.TargetWithoutContext="{Binding MenuItemX}" 
   cal:Message.Attach="Clicked" />
link|improve this answer
thank you very much! – sjors miltenburg Jun 15 '11 at 9:04
How can I use it with the CM's AppBarButton on WP7? Compiler says the property is not attachable to the AppBarButton. – serega Aug 5 '11 at 10:14
CM's WP7 version has a special AppBarButton supporting the same syntax. – Marco Amendola Aug 6 '11 at 23:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.