I\'m currently working on a menu system for a game and I have the standard hierarchy for screens and screen elements. (Screens contain some collection of screen elements). I
Try:
public event EventHandler Selected;
then to call..
Selected(null, EventArgs.Empty);
This way it's the default event definition and you don't need to pass any information if you don't want to.