This appears to be warning 67 and can thus be suppressed with:
#pragma warning disable 67
Don't forget to restore it as soon as possible (after the event declaration) with:
#pragma warning restore 67
However, I'd check again and make sure you're raising the event somewhere, not just subscribing to it. The fact that the compiler spits out 20 warnings and not 20 errors when you comment out the event is also suspicious...
There's also an interesting article about this warning and specifically how it applies to interfaces; there's a good suggestion on how to deal with "unused" events.