[Mono-list] late linking & dynamic invocation ...

Zaphod j0k3rin@yahoo.co.in
Tue, 9 Jul 2002 20:38:56 +0530


On Fri, Jul 05, 2002 at 06:42:39PM -0500, Mike Kestner wrote:
> I have heard so much grousing about the EventArgs usage from traditional
> Gtk users that I'm considering reworking this, or accepting a patch to
> fix it, but the reason it is done this way is to attempt to provide
> consistency with the rest of the .Net class libraries.

So with some such new patch , can I just connect ordinary methods ?
(like I do in C)

class foo
{
static void bar()
{
.......
}
GtkWidget wid = ....
wid.Connect("delete",bar);
}

Like some equivalent of gtk_signal_connect ? Or will it still be the
long winded EventHandler route ?