Hi All
Does anyone know if its possible to use the Microcsoft Expression libraries to create event triggers ? I'm trying to convert an application to MVVM and I have use this pattern to implement event handling in other projects, but I'm not sure if the reason its not working is because I've missed something or if it just simply won't work against a dynamiclayer.
eg
<esri:ArcGISDynamicMapServiceLayer Url="SomeURL">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Initialized">
<ei:CallMethodAction TargetObject="{Binding}" MethodName="LayersInitialized_Handler"/>
</i:EventTrigger>
</i:Interaction.Triggers>
</esri:ArcGISDynamicMapServiceLayer>
Thanks