Suppose I'm writing a WinRT app with both JavaScript and C# code, and I want my JavaScript code to hook an event on my C# object.

I know that's supposed to be possible, but what would that JavaScript code look like? How are events (however the concept of a CLR event is represented in WinRT) exposed in the JavaScript projection?

If a concrete example would help, let's say my C# object has this event:

public event EventHandler Initialized;

How do I hook that event from JavaScript?

(I'm sure the answer is buried in one of the //build/ videos, but they're not exactly searchable.)

link|improve this question

72% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Once you have your C# class hooked up and accessible from JavaScript (see C# //Build/ talk for details), it should be as simple as this:

var foo = new CSharpClass();
foo.addEventListener("Initialized", onInitialized);

Then when C# fires the event, your onInitialized function will be called.

link|improve this answer
Cool. What's the signature for the JavaScript method? Does it take sender and EventArgs, or is it parameterless since it's just an EventArgs with no payload? – Joe White Oct 3 '11 at 2:36
It takes 1 argument which is an object containing the sender and the event arguments. – Steve Rowe Oct 3 '11 at 3:03
Some more on JavaScript events can be seen in the JavaScript //build/ talk at 24:00. channel9.msdn.com/events/BUILD/BUILD2011/TOOL-533T – Steve Rowe Oct 3 '11 at 4:24
feedback

Your Answer

 
or
required, but never shown

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