I have a behavior that exposes several command properties. Typically I use MVVM Light and would just use a routed command in my view model and bind to those. However, this project is using Caliburn.Micro so I’m trying to do it the Caliburn.Micro way. Is there some syntax I can use on the Message.Attach to do this (is there any good documentation on the parser for Message.Attach)?
Do I have to modify the behavior to expose events to make this work with Caliburn.Micro?
I ended up rewriting the Behavior as a Trigger instead to handle this.