in dlr 1.0 i want to do something like this
in c# code behind
class Context
{
public event EventHandler OnClick
///register this instance as a variable name "context" in ironpython
///...
}
in ironpython i want to do
def handler(sender, e):
//.......
context.Onclick += handler
is it possible to do this in dynamic language runtime in silverlight?
_______________________________________________ Users mailing list [email protected] http://lists.ironpython.com/listinfo.cgi/users-ironpython.com
