I have a class which trying to register an event in another class.
In class A I have a method as shown below:
public void Mouse_Down(object sender, MouseEventArgs e)
{
}
I am registering the event in class B like so:
ClassA classA = new ClassA();
classA.MouseDown += new MouseEventHandler(classA.Mouse_Down);
When click nothing is happening. Does anyone know what the problem could be.

Mouse_Downmethod? – George Duckett Dec 14 '11 at 10:57