Skip to content

Instantly share code, notes, and snippets.

@Vannevelj
Last active August 29, 2015 14:03
Show Gist options
  • Save Vannevelj/f1bcd31e45689f1e6bf7 to your computer and use it in GitHub Desktop.
Save Vannevelj/f1bcd31e45689f1e6bf7 to your computer and use it in GitHub Desktop.
Eventcalling from WinRT
public sealed class TestClass
{
public event TypedEventHandler<TestClass, LogoutEventArgs> Logout;
public void DoSomething()
{
if (Logout != null)
{
Logout(this, new LogoutEventArgs());
}
}
}
var test = new ShowpadLibrary.TestClass();
test.onlogout = function (event) {
console.log("haha");
};
test.doSomething();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment