I have a form with a user control which has an event called "ResourcesChanged(List as List(of Resources))"
In my form, I handle this with the following code:
Private Sub ucResources_ResourcesChanged(ByVal Resources As System.Collections.Generic.List(Of EventResource)) Handles ucResources.ResourcesChanged
mEvent.EventResourceList = Resources
End Sub
If I compile and run my app the event handler works fine and when I change a resource it fires correctly.
If I go into the editor and change something (move a control a few pixels for instance), when I save I get the following added:
Private Sub ucResources_ResourcesChanged( ByVal Resources As System.Collections.Generic.List`1)
End Sub
What am I doing wrong that this is happening?
Thanks,
Shawn