vote up 1 vote down star
1

Can I use javascript in a page to cause an event in a silverlight component to fire? If so, does anybody have some code samples?

flag

74% accept rate

2 Answers

vote up 3 vote down check

Yes, you can. You need to decorate a method on a class in your .NET code with the "ScriptableMember" attribue and then call HtmlPage.RegisterScriptableObject on your object to mark it for interoperability with javascript. You'd create your .NET method called something like OnMyEvent(sender As Object, e As MyEventArgs) which would then raise the object's event that you want. Your javascript would then call that.

See this link for a walkthrough: http://msdn.microsoft.com/en-us/library/cc221414(VS.95).aspx

link|flag
vote up 2 vote down

Video walk through here: http://silverlight.net/learn/learnvideo.aspx?video=65683

link|flag

Your Answer

Get an OpenID
or

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