How to control videodisplay functions like videodisplay.stop, pause(), close etc from the presentation model? But I need to control it from Presentation model. Custom events is not my option, as that is costly.
Asked
Active
Viewed 177 times
2 Answers
0
Take a peek at my code behind approach: you could just give the model an id and call methods on it. But i really don't think custom events are too costly.

Community
- 1
- 1

Florian Salihovic
- 3,921
- 2
- 19
- 26
0
I used the Binding tag to solve a similar problem (calling centerAt on an ESRI Map) :
<fx:Binding source="model.videoState" destination="videoState"/>
<fx:Script>
<
Romain F.
- 766
- 10
- 15