vote up 2 vote down star
1

I'm creating a number of UserControls dynamically using LoadControl(String) and want to subscribe to an event of each of them.

All my controls inherits a common Interface that require an implementation of a common Event:

public interface IObjectProcessor
{
	event EventHandler<ObjectProcessedEventArgs> ObjectProcessed;
}

So I do next on my page loading event:

protected void Page_Load()
{
   switch(Request["type"])
   {
     case "user":
     {
        LoadControl("AddUser.ascx", delegate(object sender, ObjectProcessedEventArgs e)
        {
           // do something
        });
        break;
     }
   }
}

private void LoadControl(string path, Action<object, ObjectProcessedEventArgs> action)
{
	var control = (IObjectProcessor)LoadControl(path)
	control.ObjectProcessed // here!
}

How to subscribe a deleagte to this event?

flag

74% accept rate

2 Answers

vote up 5 vote down check

Change Action<object, ObjectProcessedEventArgs> to EventHandler<ObjectProcessedEventArgs>:

private void LoadControl(string path, EventHandler<ObjectProcessedEventArgs> handler)
{
        var control = (IObjectProcessor)LoadControl(path)
        control.ObjectProcessed += handler;
}

HTH, Kent

link|flag
vote up -1 vote down
control.ObjectProcessed += action
link|flag
Cannot implicitly convert type 'Action<object,ObjectProcessedEventArgs>' to 'EventHandler<ObjectProcessedEventArgs>' – abatishchev Aug 14 at 14:44
create explicit declartion of delegate(object sender, ObjectProcessedEventArgs e) and use it as input type – Dewfy Aug 14 at 14:52

Your Answer

Get an OpenID
or

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