tags:

views:

46

answers:

1

In a SilverLight Project I Have one control instantiated two times, when the second object is created the first one loses all event handlers.

Something Like This:

UserControl a = New MyUserControl();
UserControl b = New MyUserControl();

When b is Created MouseLeftButtonUp on a does not occur any more!!

It's possible??

A: 

Hans is write im stupid!! Thanks!!

CrazyJoe